aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/downloader
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-06-17 23:50:21 +0700
committerSergey M․ <dstftw@gmail.com>2017-06-17 23:50:21 +0700
commit1433734c35dbfe16193ddcb6e59f55b58e76ba74 (patch)
treec09fe37668c44281390f102107fde3a41f20eef1 /youtube_dl/downloader
parentaefce8e6dca8a0ae784468a5e1a4ba01f1471380 (diff)
downloadyoutube-dl-1433734c35dbfe16193ddcb6e59f55b58e76ba74.zip
youtube-dl-1433734c35dbfe16193ddcb6e59f55b58e76ba74.tar.gz
youtube-dl-1433734c35dbfe16193ddcb6e59f55b58e76ba74.tar.bz2
[downloader/common] Use utils.shell_quote for debug command line
Diffstat (limited to 'youtube_dl/downloader')
-rw-r--r--youtube_dl/downloader/common.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py
index 5d66211..77242da 100644
--- a/youtube_dl/downloader/common.py
+++ b/youtube_dl/downloader/common.py
@@ -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)))