Skip to content
Snippets Groups Projects
Commit 0e9b5b7b authored by Aurore Dupuis's avatar Aurore Dupuis
Browse files

#70 - Fix log message.

parent e34015cc
No related branches found
No related tags found
2 merge requests!77Release 1.7.1,!65Resolve "Log format error"
......@@ -98,7 +98,7 @@ def main(argv):
if not os.path.exists(path_out):
logging.info("Create directory {} ...".format(path_out))
os.makedirs(path_out)
logging.debug("Path_out is: {}", path_out)
logging.debug("Path_out is: {}".format(path_out))
path_tmp = str(params.get("path_tmp", os.path.join(path_out,"tmp")))
if not os.path.exists(path_tmp):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment