diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-19 04:14:58 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-19 04:14:58 +0600 |
commit | 163965d86188e5545caae4b5e33ff25278fee5e7 (patch) | |
tree | fe8c21f67655948243a023cff6c723165bd9f2a9 | |
parent | 6e218b3f9a57f42756aa3016fa9dd530fb58c452 (diff) |
[megavideoz] Improve non-existing videos check
-rw-r--r-- | youtube_dl/extractor/megavideoz.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/megavideoz.py b/youtube_dl/extractor/megavideoz.py index a15b6a32a..af7ff07ea 100644 --- a/youtube_dl/extractor/megavideoz.py +++ b/youtube_dl/extractor/megavideoz.py @@ -32,7 +32,7 @@ class MegaVideozIE(InfoExtractor): webpage = self._download_webpage(url, display_id) - if '>Video Not Found<' in webpage: + if any(p in webpage for p in ('>Video Not Found<', '>404 Error<')): raise ExtractorError('Video %s does not exist' % video_id, expected=True) config = self._download_xml( |