1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-19 19:52:35 +02: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 @@ def dl(self, name, info, subtitle=False, test=False):
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,