Browse Source

[eroprofile] Use raise_login_required

totalwebcasting
Sergey M․ 9 years ago
parent
commit
3c53455d15
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      youtube_dl/extractor/eroprofile.py

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

@ -71,8 +71,7 @@ class EroProfileIE(InfoExtractor):
m = re.search(r'You must be logged in to view this video\.', webpage)
if m:
raise ExtractorError(
'This video requires login. Please specify a username and password and try again.', expected=True)
self.raise_login_required('This video requires login')
video_id = self._search_regex(
[r"glbUpdViews\s*\('\d*','(\d+)'", r'p/report/video/(\d+)'],


Loading…
Cancel
Save