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

@@ -141,7 +141,7 @@ class PathFormat():
try:
return open(self.temppath, mode)
except FileNotFoundError:
os.makedirs(self.realdirectory, exist_ok=True)
os.makedirs(self.realdirectory)
return open(self.temppath, mode)
def exists(self):
@@ -322,7 +322,7 @@ class PathFormat():
os.replace(self.temppath, self.realpath)
except FileNotFoundError:
# delayed directory creation
os.makedirs(self.realdirectory, exist_ok=True)
os.makedirs(self.realdirectory)
continue
except OSError:
# move across different filesystems