Merge pull request #1189 from cyisfor/master

More informative error
This commit is contained in:
Philipp Hagemeister 2013-08-07 17:30:28 -07:00
commit 0f90943e45
1 changed files with 1 additions and 1 deletions

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