From 52a77c40445182d0fd9ee331307fd68af1b50a3a Mon Sep 17 00:00:00 2001 From: John Readey Date: Tue, 29 Oct 2019 20:45:11 -0700 Subject: [PATCH] remove fstring for python 3.5 support --- h5pyd/_hl/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/h5pyd/_hl/dataset.py b/h5pyd/_hl/dataset.py index a2127cf7..d1a2093a 100644 --- a/h5pyd/_hl/dataset.py +++ b/h5pyd/_hl/dataset.py @@ -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"])