1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-01-18 23:03:05 +01:00

Fix check_formats output being written to stdout when -qv

Closes #1229
This commit is contained in:
pukkandan 2021-10-11 03:59:55 +05:30
parent 0481e266f5
commit a169858f24

View file

@ -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,