pull/5824/head
Mike Fährmann 3 months ago
parent 1ca2cf51a2
commit ba51c1a8e4
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -338,6 +338,10 @@ class PathFormat():
while True:
try:
os.replace(self.temppath, self.realpath)
except FileNotFoundError:
# delayed directory creation
os.makedirs(self.realdirectory)
continue
except OSError:
# move across different filesystems
try:

Loading…
Cancel
Save