diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-14 13:15:29 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-05-14 13:15:29 +0530 |
commit | 0760b0a7e2462b6513e1dd76f8389b8c0b185ac3 (patch) | |
tree | 4d78ea03a0c5d18b0057b1fc60d2872d679c796e /yt_dlp/downloader/common.py | |
parent | d908aa636ad19c17ae0033e58bde3e45dca870c8 (diff) | |
download | hypervideo-pre-0760b0a7e2462b6513e1dd76f8389b8c0b185ac3.tar.lz hypervideo-pre-0760b0a7e2462b6513e1dd76f8389b8c0b185ac3.tar.xz hypervideo-pre-0760b0a7e2462b6513e1dd76f8389b8c0b185ac3.zip |
Standardize `write_debug`
Diffstat (limited to 'yt_dlp/downloader/common.py')
-rw-r--r-- | yt_dlp/downloader/common.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/yt_dlp/downloader/common.py b/yt_dlp/downloader/common.py index 0cf7b13e6..b8c81eaf6 100644 --- a/yt_dlp/downloader/common.py +++ b/yt_dlp/downloader/common.py @@ -402,5 +402,4 @@ class FileDownloader(object): if exe is None: exe = os.path.basename(str_args[0]) - self.to_screen('[debug] %s command line: %s' % ( - exe, shell_quote(str_args))) + self.write_debug('%s command line: %s' % (exe, shell_quote(str_args))) |