1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-14 15:59:36 +00: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 @@ class YoutubeDL(object):
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