Browse Source

[downloader/common] Use utils.shell_quote for debug command line

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
1433734c35
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      youtube_dl/downloader/common.py

+ 2
- 6
youtube_dl/downloader/common.py View File

@ -8,10 +8,11 @@ import random
from ..compat import compat_os_name
from ..utils import (
decodeArgument,
encodeFilename,
error_to_compat_str,
decodeArgument,
format_bytes,
shell_quote,
timeconvert,
)
@ -381,10 +382,5 @@ class FileDownloader(object):
if exe is None:
exe = os.path.basename(str_args[0])
try:
import pipes
shell_quote = lambda args: ' '.join(map(pipes.quote, str_args))
except ImportError:
shell_quote = repr
self.to_screen('[debug] %s command line: %s' % (
exe, shell_quote(str_args)))

Loading…
Cancel
Save