aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/commonmistakes.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-05-17 17:53:08 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-05-17 18:59:51 +0530
commita06916d98e1669f9b7d821bcb3ca6d13bd6429fe (patch)
treee6484fd0b6301d0051a0300c866cc2922a4437b7 /yt_dlp/extractor/commonmistakes.py
parent681de68e9df67f07dde3fbbc6cb2e65a78b2bb16 (diff)
downloadhypervideo-pre-a06916d98e1669f9b7d821bcb3ca6d13bd6429fe.tar.lz
hypervideo-pre-a06916d98e1669f9b7d821bcb3ca6d13bd6429fe.tar.xz
hypervideo-pre-a06916d98e1669f9b7d821bcb3ca6d13bd6429fe.zip
[extractor] Add `write_debug` and `get_param`
Diffstat (limited to 'yt_dlp/extractor/commonmistakes.py')
-rw-r--r--yt_dlp/extractor/commonmistakes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/commonmistakes.py b/yt_dlp/extractor/commonmistakes.py
index 1a5dcbd8b..051269652 100644
--- a/yt_dlp/extractor/commonmistakes.py
+++ b/yt_dlp/extractor/commonmistakes.py
@@ -26,7 +26,7 @@ class CommonMistakesIE(InfoExtractor):
'That doesn\'t make any sense. '
'Simply remove the parameter in your command or configuration.'
) % url
- if not self._downloader.params.get('verbose'):
+ if not self.get_param('verbose'):
msg += ' Add -v to the command line to see what arguments and configuration yt-dlp has'
raise ExtractorError(msg, expected=True)