remove 'exist_ok=True' argument from several os.makedirs calls
makedirs in those places is only meant to create missing directories, anything should be considered an error
This commit is contained in:
@@ -95,7 +95,7 @@ class MetadataPP(PostProcessor):
|
||||
with open(path, "w", encoding="utf-8") as fp:
|
||||
self.write(fp, pathfmt.kwdict)
|
||||
except FileNotFoundError:
|
||||
os.makedirs(directory, exist_ok=True)
|
||||
os.makedirs(directory)
|
||||
with open(path, "w", encoding="utf-8") as fp:
|
||||
self.write(fp, pathfmt.kwdict)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user