diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-10-11 03:59:55 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-10-11 09:49:52 +0530 |
commit | a169858f2409eefb66ac30085fddba81123f63b7 (patch) | |
tree | d02c89d66a5774c19f6820c4a8b4ba3f79e6ee70 | |
parent | 0481e266f590d835a010019a63b1821c24c8e178 (diff) | |
download | hypervideo-pre-a169858f2409eefb66ac30085fddba81123f63b7.tar.lz hypervideo-pre-a169858f2409eefb66ac30085fddba81123f63b7.tar.xz hypervideo-pre-a169858f2409eefb66ac30085fddba81123f63b7.zip |
Fix `check_formats` output being written to stdout when `-qv`
Closes #1229
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 49d6b3779..2730d2e19 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -2485,7 +2485,7 @@ class YoutubeDL(object): verbose = self.params.get('verbose') params = { 'test': True, - 'quiet': not verbose, + 'quiet': self.params.get('quiet') or not verbose, 'verbose': verbose, 'noprogress': not verbose, 'nopart': True, |