aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-11-03 22:22:40 +0700
committerSergey M․ <dstftw@gmail.com>2016-11-03 22:22:40 +0700
commit32f2627aed68ed2981f438067252b9921c4a39fe (patch)
tree339a4b62297b6fc745fcd454e583c4d4604f22ee
parent9d64e1dcdc610491217a3197f97e5bd8120d1974 (diff)
downloadyoutube-dl-32f2627aed68ed2981f438067252b9921c4a39fe.tar.xz
[vodlocker] Add another removed file pattern (closes #11106)
-rw-r--r--youtube_dl/extractor/vodlocker.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vodlocker.py b/youtube_dl/extractor/vodlocker.py
index c85b474d2..bbfa6e5f2 100644
--- a/youtube_dl/extractor/vodlocker.py
+++ b/youtube_dl/extractor/vodlocker.py
@@ -31,7 +31,8 @@ class VodlockerIE(InfoExtractor):
if any(p in webpage for p in (
'>THIS FILE WAS DELETED<',
'>File Not Found<',
- 'The file you were looking for could not be found, sorry for any inconvenience.<')):
+ 'The file you were looking for could not be found, sorry for any inconvenience.<',
+ '>The file was removed')):
raise ExtractorError('Video %s does not exist' % video_id, expected=True)
fields = self._hidden_inputs(webpage)