Skip to content
Snippets Groups Projects

Resolve "Log format error"

Merged Aurore Dupuis requested to merge 70-log-format-error into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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):
Loading