aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/moniker.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-04-27 23:44:05 +0600
committerSergey M․ <dstftw@gmail.com>2015-04-27 23:44:05 +0600
commite206740fd7454bb03e2819365a257bce59f76162 (patch)
treeb67e03bee9767aa6cc085601b06aabbdc056afee /youtube_dl/extractor/moniker.py
parent290a5a8d85e8f7514099fa305c8f0b26d1b35a78 (diff)
downloadyoutube-dl-e206740fd7454bb03e2819365a257bce59f76162.tar.xz
[moniker] Capture and output error message (#5541)
Diffstat (limited to 'youtube_dl/extractor/moniker.py')
-rw-r--r--youtube_dl/extractor/moniker.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube_dl/extractor/moniker.py b/youtube_dl/extractor/moniker.py
index 5de719bdc..801abe0e1 100644
--- a/youtube_dl/extractor/moniker.py
+++ b/youtube_dl/extractor/moniker.py
@@ -9,6 +9,7 @@ from ..compat import (
compat_urllib_parse,
compat_urllib_request,
)
+from ..utils import ExtractorError
class MonikerIE(InfoExtractor):
@@ -40,6 +41,12 @@ class MonikerIE(InfoExtractor):
video_id = self._match_id(url)
orig_webpage = self._download_webpage(url, video_id)
+ error = self._search_regex(
+ r'class="err">([^<]+)<', orig_webpage, 'error', default=None)
+ if error:
+ raise ExtractorError(
+ '%s returned error: %s' % (self.IE_NAME, error), expected=True)
+
fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
data = dict(fields)