code cleanup: use exist_ok keyword arg to os.makedirs() rather then checking if the dir exists first.

This commit is contained in:
Campbell Barton
2013-02-07 04:02:24 +00:00
parent 0152d11e01
commit 4b8fe80e6e
2 changed files with 2 additions and 6 deletions

View File

@@ -436,10 +436,7 @@ def path_reference_copy(copy_set, report=print):
pass
else:
dir_to = os.path.dirname(file_dst)
if not os.path.isdir(dir_to):
os.makedirs(dir_to)
os.makedirs(dir_to, exist_ok=True)
shutil.copy(file_src, file_dst)