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
1 changed files with 1 additions and 1 deletions

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,