Browse Source

[vodlocker] Add another removed file pattern (closes #11106)

totalwebcasting
Sergey M․ 8 years ago
parent
commit
32f2627aed
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/vodlocker.py

+ 2
- 1
youtube_dl/extractor/vodlocker.py View File

@ -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)


Loading…
Cancel
Save