Skip to content
Snippets Groups Projects

FIX: Add microseconds to datetime part in tempfolder name

Merged Karim Ahmed requested to merge fix/temp_folder_already_exists into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -591,7 +591,7 @@ def run(argv=None):
@@ -591,7 +591,7 @@ def run(argv=None):
title = title.rstrip()
title = title.rstrip()
run_uuid = f"t{datetime.now().strftime('%y%m%d_%H%M%S')}"
run_uuid = f"t{datetime.now().strftime('%y%m%d_%H%M%S.%f')}"
# check if concurrency parameter is given and we run concurrently
# check if concurrency parameter is given and we run concurrently
if concurrency_par is not None and not any(
if concurrency_par is not None and not any(
Loading