diff options
author | Robert Geislinger <mail@crpykng.de> | 2022-11-11 08:43:08 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-11-11 15:48:29 +0530 |
commit | 7aaf4cd2a8fd8ecf2123b981782c3d12dce80d78 (patch) | |
tree | 46969d7a58f67b81c2670d667fc0be40626b1ee9 /yt_dlp/utils.py | |
parent | 8522226d2fea04d48802a9ef402438ff79227fe4 (diff) | |
download | hypervideo-pre-7aaf4cd2a8fd8ecf2123b981782c3d12dce80d78.tar.lz hypervideo-pre-7aaf4cd2a8fd8ecf2123b981782c3d12dce80d78.tar.xz hypervideo-pre-7aaf4cd2a8fd8ecf2123b981782c3d12dce80d78.zip |
[cleanup] Misc
Closes #5471, Closes #5312
Authored by: pukkandan, Alienmaster
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r-- | yt_dlp/utils.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index 4c44f4845..04a0956c9 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -2698,9 +2698,7 @@ def check_executable(exe, args=[]): return exe -def _get_exe_version_output(exe, args, *, to_screen=None): - if to_screen: - to_screen(f'Checking exe version: {shell_quote([exe] + args)}') +def _get_exe_version_output(exe, args): try: # STDIN should be redirected too. On UNIX-like systems, ffmpeg triggers # SIGTTOU if yt-dlp is run in the background. |