diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-09 10:02:17 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-05-11 22:10:15 +0530 |
commit | 8dcce6a89ca0dcb875fa1ba5f8a83cc244ceabcb (patch) | |
tree | dee8c422585730446ca4b502325ea9eed6c2f722 /yt_dlp/extractor/fujitv.py | |
parent | 494f52308b313110b481711d3d1cb8f3630a5bbe (diff) | |
download | hypervideo-pre-8dcce6a89ca0dcb875fa1ba5f8a83cc244ceabcb.tar.lz hypervideo-pre-8dcce6a89ca0dcb875fa1ba5f8a83cc244ceabcb.tar.xz hypervideo-pre-8dcce6a89ca0dcb875fa1ba5f8a83cc244ceabcb.zip |
[extractor] Document netrc machines
Closes #3169
Diffstat (limited to 'yt_dlp/extractor/fujitv.py')
-rw-r--r-- | yt_dlp/extractor/fujitv.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/fujitv.py b/yt_dlp/extractor/fujitv.py index f66149d2c..d7f49accd 100644 --- a/yt_dlp/extractor/fujitv.py +++ b/yt_dlp/extractor/fujitv.py @@ -45,7 +45,7 @@ class FujiTVFODPlus7IE(InfoExtractor): if token: json_info = self._download_json('https://fod-sp.fujitv.co.jp/apps/api/episode/detail/?ep_id=%s&is_premium=false' % video_id, video_id, headers={'x-authorization': f'Bearer {token.value}'}, fatal=False) else: - self.report_warning(f'The token cookie is needed to extract video metadata. {self._LOGIN_HINTS["cookies"]}') + self.report_warning(f'The token cookie is needed to extract video metadata. {self._login_hint("cookies")}') formats, subtitles = [], {} src_json = self._download_json(f'{self._BASE_URL}abrjson_v2/tv_android/{video_id}', video_id) for src in src_json['video_selector']: |