diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-16 15:31:10 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-17 04:16:41 +0530 |
commit | 6a39ee13f7613767905a4669d1d0247aafc5a12c (patch) | |
tree | f81a187ae9849b760a3042dc449e4d3a7df54753 /yt_dlp/extractor/iqiyi.py | |
parent | 33245766ab0b7be7971ff46f03c706d77a327a92 (diff) | |
download | hypervideo-pre-6a39ee13f7613767905a4669d1d0247aafc5a12c.tar.lz hypervideo-pre-6a39ee13f7613767905a4669d1d0247aafc5a12c.tar.xz hypervideo-pre-6a39ee13f7613767905a4669d1d0247aafc5a12c.zip |
Fix inconsistent use of `report_warning`
Diffstat (limited to 'yt_dlp/extractor/iqiyi.py')
-rw-r--r-- | yt_dlp/extractor/iqiyi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/iqiyi.py b/yt_dlp/extractor/iqiyi.py index 0d7cc65d7..e33e23f08 100644 --- a/yt_dlp/extractor/iqiyi.py +++ b/yt_dlp/extractor/iqiyi.py @@ -280,7 +280,7 @@ class IqiyiIE(InfoExtractor): msg = 'error %s' % code if validation_result.get('msg'): msg += ': ' + validation_result['msg'] - self._downloader.report_warning('unable to log in: ' + msg) + self.report_warning('unable to log in: ' + msg) return False return True |