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/mildom.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/mildom.py')
-rw-r--r-- | yt_dlp/extractor/mildom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/mildom.py b/yt_dlp/extractor/mildom.py index 50daaf583..3606f09b4 100644 --- a/yt_dlp/extractor/mildom.py +++ b/yt_dlp/extractor/mildom.py @@ -262,7 +262,7 @@ class MildomUserVodIE(MildomBaseIE): def _real_extract(self, url): user_id = self._match_id(url) - self._downloader.report_warning('To download ongoing live, please use "https://www.mildom.com/%s" instead. This will list up VODs belonging to user.' % user_id) + self.report_warning('To download ongoing live, please use "https://www.mildom.com/%s" instead. This will list up VODs belonging to user.' % user_id) profile = self._call_api( 'https://cloudac.mildom.com/nonolive/gappserv/user/profileV2', user_id, |