[crunchyroll] Use raise_login_required
This commit is contained in:
parent
43e7d3c945
commit
bbb43a39fd
1 changed files with 1 additions and 4 deletions
|
@ -250,10 +250,7 @@ Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
|
||||||
raise ExtractorError('crunchyroll returned error: %s' % msg['message_body'], expected=True)
|
raise ExtractorError('crunchyroll returned error: %s' % msg['message_body'], expected=True)
|
||||||
|
|
||||||
if 'To view this, please log in to verify you are 18 or older.' in webpage:
|
if 'To view this, please log in to verify you are 18 or older.' in webpage:
|
||||||
raise ExtractorError(
|
self.raise_login_required(video_id)
|
||||||
'This video is only available for registered users, '
|
|
||||||
'use --username and --password options to provide account credentials.',
|
|
||||||
expected=True)
|
|
||||||
|
|
||||||
video_title = self._html_search_regex(r'<h1[^>]*>(.+?)</h1>', webpage, 'video_title', flags=re.DOTALL)
|
video_title = self._html_search_regex(r'<h1[^>]*>(.+?)</h1>', webpage, 'video_title', flags=re.DOTALL)
|
||||||
video_title = re.sub(r' {2,}', ' ', video_title)
|
video_title = re.sub(r' {2,}', ' ', video_title)
|
||||||
|
|
Loading…
Reference in a new issue