Skip to content
Snippets Groups Projects
Commit 169a35fd authored by Gregory Ashton's avatar Gregory Ashton Committed by Moritz Huebner
Browse files

Add exists_ok to mkdir

Cherry picked results from !905:
- Add the exist_ok=True flag to mkdirs resolving errors caused when the
directory is created before it is written (common on large-scale HTC
runs).
parent da290af1
No related branches found
No related tags found
1 merge request!946Add exists_ok to mkdir
...@@ -508,11 +508,7 @@ def check_directory_exists_and_if_not_mkdir(directory): ...@@ -508,11 +508,7 @@ def check_directory_exists_and_if_not_mkdir(directory):
""" """
if directory == "": if directory == "":
return return
elif not os.path.exists(directory): os.makedirs(directory, exist_ok=True)
os.makedirs(directory)
logger.debug('Making directory {}'.format(directory))
else:
logger.debug('Directory {} exists'.format(directory))
def set_up_command_line_arguments(): def set_up_command_line_arguments():
......
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