diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-14 13:15:29 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-14 13:15:29 +0530 |
commit | 0760b0a7e2462b6513e1dd76f8389b8c0b185ac3 (patch) | |
tree | 4d78ea03a0c5d18b0057b1fc60d2872d679c796e /yt_dlp/extractor/commonmistakes.py | |
parent | d908aa636ad19c17ae0033e58bde3e45dca870c8 (diff) | |
download | hypervideo-pre-0760b0a7e2462b6513e1dd76f8389b8c0b185ac3.tar.lz hypervideo-pre-0760b0a7e2462b6513e1dd76f8389b8c0b185ac3.tar.xz hypervideo-pre-0760b0a7e2462b6513e1dd76f8389b8c0b185ac3.zip |
Standardize `write_debug`
Diffstat (limited to 'yt_dlp/extractor/commonmistakes.py')
-rw-r--r-- | yt_dlp/extractor/commonmistakes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/commonmistakes.py b/yt_dlp/extractor/commonmistakes.py index 593ff1835..1a5dcbd8b 100644 --- a/yt_dlp/extractor/commonmistakes.py +++ b/yt_dlp/extractor/commonmistakes.py @@ -27,7 +27,7 @@ class CommonMistakesIE(InfoExtractor): 'Simply remove the parameter in your command or configuration.' ) % url if not self._downloader.params.get('verbose'): - msg += ' Add -v to the command line to see what arguments and configuration yt-dlp got.' + msg += ' Add -v to the command line to see what arguments and configuration yt-dlp has' raise ExtractorError(msg, expected=True) |