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:
Mike Fährmann
2022-05-11 15:04:47 +02:00
parent 9c8647a4fd
commit d1bb7fae2d
2 changed files with 3 additions and 3 deletions

View File

@@ -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)