diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-06-29 22:27:53 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-06-29 22:27:53 +0700 |
commit | b2ed954fc6f19a00c7c8c12f45a6a44bd1722867 (patch) | |
tree | 5e474e2e227395da3163800886e13a3445e21411 /youtube_dl | |
parent | a919ca0ad60c4ef6165fceadeb9f6ad70b53e7a8 (diff) |
[bbccouk] Capture and output error message (closes #13518)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/bbc.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index 7cd4446b4..6f5f9aa3a 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -523,6 +523,12 @@ class BBCCoUkIE(InfoExtractor): webpage = self._download_webpage(url, group_id, 'Downloading video page') + error = self._search_regex( + r'<div\b[^>]+\bclass=["\']smp__message delta["\'][^>]*>([^<]+)<', + webpage, 'error', default=None) + if error: + raise ExtractorError(error, expected=True) + programme_id = None duration = None |