aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/common.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-08-28 04:25:38 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-08-28 04:25:38 +0200
commit2eabb80254f48d63a464247140d8e04a73418ded (patch)
treea218127afbc1df581c73a19bf6bb21034be14f08 /youtube_dl/extractor/common.py
parent44586389e4676dfd926255cf76e36684dcf4742d (diff)
parent5a27ecdd2ec83ba6e1069428c4c0fb3bd61f638c (diff)
downloadyoutube-dl-2eabb80254f48d63a464247140d8e04a73418ded.tar.xz
[addanime] improve
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r--youtube_dl/extractor/common.py2
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) """