diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-11-20 06:25:33 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-11-20 06:25:33 +0100 |
commit | cc13cc0251b287ac88883096fcc36a8072e7ab5d (patch) | |
tree | 524aaba1ddd5fa600556976f08179d19c9fc7490 /youtube_dl/extractor/teamcoco.py | |
parent | 86bd5f2ca9e17bb7f619595e02b28ca4954aeee8 (diff) |
[teamcoco] Correct error
Diffstat (limited to 'youtube_dl/extractor/teamcoco.py')
-rw-r--r-- | youtube_dl/extractor/teamcoco.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/teamcoco.py b/youtube_dl/extractor/teamcoco.py index bc48620f0..165d9f88b 100644 --- a/youtube_dl/extractor/teamcoco.py +++ b/youtube_dl/extractor/teamcoco.py @@ -60,7 +60,7 @@ class TeamcocoIE(InfoExtractor): return -1 formats.sort(key=sort_key) if not formats: - raise RegexNotFoundError(u'Unable to extract video URL') + raise ExtractorError(u'Unable to extract video URL') return { 'id': video_id, |