aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/tubitv.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/tubitv.py')
-rw-r--r--youtube_dl/extractor/tubitv.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/youtube_dl/extractor/tubitv.py b/youtube_dl/extractor/tubitv.py
index 2c4b21807..4f86b3ee9 100644
--- a/youtube_dl/extractor/tubitv.py
+++ b/youtube_dl/extractor/tubitv.py
@@ -60,9 +60,7 @@ class TubiTvIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
if re.search(r"<(?:DIV|div) class='login-required-screen'>", webpage):
- raise ExtractorError(
- 'This video requires login, use --username and --password '
- 'options to provide account credentials.', expected=True)
+ self.raise_login_required('This video requires login')
title = self._og_search_title(webpage)
description = self._og_search_description(webpage)