Skip to content

Commit

Permalink
fix f-string format in log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
sanahabhimani committed Jan 25, 2024
1 parent d09e85e commit c241b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/hk/getdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@ def load_range(start, stop, fields=None, alias=None,
if os.path.exists(base):
bases.append(base)
else:
hk_logger.debug('f Folder {base} does not exist, skipping')
hk_logger.debug(f'Folder {base} does not exist, skipping')
continue

if len(bases) > 1:
Expand Down

0 comments on commit c241b1c

Please sign in to comment.