mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 00:25:06 +00:00
[eroprofile] Use raise_login_required
This commit is contained in:
parent
bbb43a39fd
commit
3c53455d15
1 changed files with 1 additions and 2 deletions
|
@ -71,8 +71,7 @@ def _real_extract(self, url):
|
|||
|
||||
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…
Reference in a new issue