1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-27 03:35:18 +02:00

More informative error

This commit is contained in:
user 2013-08-05 19:43:09 -07:00
parent 39b782b390
commit 7edcb8f39c

View File

@ -547,7 +547,7 @@ def process_info(self, info_dict):
try:
success = self.fd._do_download(filename, info_dict)
except (OSError, IOError) as err:
raise UnavailableVideoError()
raise UnavailableVideoError(err)
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
self.report_error(u'unable to download video data: %s' % str(err))
return