aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/InfoExtractors.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-01-01 20:27:53 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-01-01 20:27:53 +0100
commit1c256f7047051bf351ed5aedb95d8e705685a06b (patch)
treee507b073c6cb78f91e81f1b7bff86b8d8c8dbd94 /youtube_dl/InfoExtractors.py
parenta34dd63bebf2140d7df7082c49857fc3b6dc410e (diff)
downloadyoutube-dl-1c256f7047051bf351ed5aedb95d8e705685a06b.tar.xz
ExtractorError for errors during extraction
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rwxr-xr-xyoutube_dl/InfoExtractors.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index 18326e294..0c101e704 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -3808,8 +3808,7 @@ class UstreamIE(InfoExtractor):
webpage_bytes = urlh.read()
webpage = webpage_bytes.decode('utf-8', 'ignore')
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
- self._downloader.trouble(u'ERROR: unable to download webpage: %s' % compat_str(err))
- return
+ raise ExtractorError(u'unable to download webpage: %s' % compat_str(err))
m = re.search(r'data-title="(?P<title>.+)"',webpage)
title = m.group('title')
m = re.search(r'<a class="state" data-content-type="channel" data-content-id="(?P<uploader>\d+)"',webpage)