aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-02-01 20:46:22 +0530
committerpukkandan <pukkandan@gmail.com>2021-02-02 03:19:21 +0530
commite8be92f9d67370a4fd7c14f71148b0dbcbdbdded (patch)
treef3527670111b074c6f15e174c41c014bbf474909
parentb9d973bef1217561801f3f6b4074ad880ddc424e (diff)
downloadhypervideo-pre-e8be92f9d67370a4fd7c14f71148b0dbcbdbdded.tar.lz
hypervideo-pre-e8be92f9d67370a4fd7c14f71148b0dbcbdbdded.tar.xz
hypervideo-pre-e8be92f9d67370a4fd7c14f71148b0dbcbdbdded.zip
Fix "Default format spec" appearing in quiet mode
-rw-r--r--youtube_dlc/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/YoutubeDL.py b/youtube_dlc/YoutubeDL.py
index 50eaf235c..0c82ff5a9 100644
--- a/youtube_dlc/YoutubeDL.py
+++ b/youtube_dlc/YoutubeDL.py
@@ -1858,7 +1858,7 @@ class YoutubeDL(object):
if req_format is None:
req_format = self._default_format_spec(info_dict, download=download)
if self.params.get('verbose'):
- self._write_string('[debug] Default format spec: %s\n' % req_format)
+ self.to_screen('[debug] Default format spec: %s' % req_format)
format_selector = self.build_format_selector(req_format)