1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-03 23:43:21 -04:00

[MoveFiles] More robust way to get final filename

:ci skip dl
This commit is contained in:
pukkandan
2021-01-23 20:55:45 +05:30
parent 6b4b65c4f4
commit c571435f9c
2 changed files with 8 additions and 9 deletions

View File

@@ -2252,10 +2252,8 @@ class YoutubeDL(object):
success, real_download = dl(temp_filename, info_dict)
info_dict['__real_download'] = real_download
# info_dict['__temp_filename'] = temp_filename
dl_filename = dl_filename or temp_filename
info_dict['__dl_filename'] = dl_filename
info_dict['__final_filename'] = full_filename
info_dict['__finaldir'] = os.path.dirname(os.path.abspath(encodeFilename(full_filename)))
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
self.report_error('unable to download video data: %s' % error_to_compat_str(err))