Skip to content

Commit

Permalink
typo in a logger.info
Browse files Browse the repository at this point in the history
  • Loading branch information
petersilva committed Dec 7, 2023
1 parent ebfc095 commit cd5a677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sarracenia/flow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,7 @@ def do_download(self) -> None:

if not os.path.isdir(msg['new_dir']):
try:
logger.info( "missing destination directories, makedirs: {msg['new_dir']} " )
logger.info( f"missing destination directories, makedirs: {msg['new_dir']} " )
self.worklist.directories_ok.append(msg['new_dir'])
os.makedirs(msg['new_dir'], 0o775, True)
except Exception as ex:
Expand Down

0 comments on commit cd5a677

Please sign in to comment.