diff options
| author | 2025-01-28 19:12:16 -0500 | |
|---|---|---|
| committer | 2025-01-28 19:12:16 -0500 | |
| commit | 5a7d8217a6edc66e3cf25ca0eee6614a10fa866c (patch) | |
| tree | a941825bf5fcf706f23b49e536edb9a2b26d5b6c /gallery_dl/path.py | |
| parent | e8f1b0d968a07cba884462e10718628394d1bae5 (diff) | |
| parent | a26df18796ff4e506b16bf32fcec9336233b9e2e (diff) | |
Update upstream source from tag 'upstream/1.28.5'
Update to upstream version '1.28.5'
with Debian dir a2e4b8ba663c03c37256ad2b059b382999e473bc
Diffstat (limited to 'gallery_dl/path.py')
| -rw-r--r-- | gallery_dl/path.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/gallery_dl/path.py b/gallery_dl/path.py index f57b02e..21e1aa0 100644 --- a/gallery_dl/path.py +++ b/gallery_dl/path.py @@ -342,15 +342,22 @@ class PathFormat(): try: os.replace(self.temppath, self.realpath) except FileNotFoundError: - # delayed directory creation - os.makedirs(self.realdirectory) + try: + # delayed directory creation + os.makedirs(self.realdirectory) + except FileExistsError: + # file at self.temppath does not exist + return False continue except OSError: # move across different filesystems try: shutil.copyfile(self.temppath, self.realpath) except FileNotFoundError: - os.makedirs(self.realdirectory) + try: + os.makedirs(self.realdirectory) + except FileExistsError: + return False shutil.copyfile(self.temppath, self.realpath) os.unlink(self.temppath) break |
