Skip to content

Commit

Permalink
remove fstring for python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jreadey committed Oct 30, 2019
1 parent 9f274f7 commit 52a77c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion h5pyd/_hl/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ def __getitem__(self, args):
elif isinstance(chunk_layout, dict):
# CHUNK_REF layout
if "dims" not in chunk_layout:
self.log.error(f"Unexpected chunk_layout: {chunk_layout}")
self.log.error("Unexpected chunk_layout: {}".format(chunk_layout))
else:
chunk_layout = tuple(chunk_layout["dims"])

Expand Down

0 comments on commit 52a77c4

Please sign in to comment.