1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-26 00:59:20 +02:00

Fix --force-overwrites when using -k

For formats that need merge, the `.fxxx` files are not removed before
downloading the corresponding `.part` files. This causes the rename to fail
This commit is contained in:
pukkandan 2021-08-14 21:13:02 +05:30
parent b714b41f81
commit f775c83110
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

View File

@ -204,9 +204,12 @@ def ytdl_filename(self, filename):
return filename + '.ytdl'
def try_rename(self, old_filename, new_filename):
if old_filename == new_filename:
return
try:
if old_filename == new_filename:
return
if self.params.get('overwrites', False):
if os.path.isfile(encodeFilename(new_filename)):
os.remove(encodeFilename(new_filename))
os.rename(encodeFilename(old_filename), encodeFilename(new_filename))
except (IOError, OSError) as err:
self.report_error('unable to rename file: %s' % error_to_compat_str(err))