diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-08-28 04:25:38 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-08-28 04:25:38 +0200 |
commit | 2eabb80254f48d63a464247140d8e04a73418ded (patch) | |
tree | a218127afbc1df581c73a19bf6bb21034be14f08 /youtube_dl/extractor/common.py | |
parent | 44586389e4676dfd926255cf76e36684dcf4742d (diff) | |
parent | 5a27ecdd2ec83ba6e1069428c4c0fb3bd61f638c (diff) |
[addanime] improve
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 52c4483c9..12169b2bb 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -129,7 +129,7 @@ class InfoExtractor(object): except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err: if errnote is None: errnote = u'Unable to download webpage' - raise ExtractorError(u'%s: %s' % (errnote, compat_str(err)), sys.exc_info()[2]) + raise ExtractorError(u'%s: %s' % (errnote, compat_str(err)), sys.exc_info()[2], cause=err) def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None): """ Returns a tuple (page content as string, URL handle) """ |