projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aefce8e
)
[downloader/common] Use utils.shell_quote for debug command line
author
Sergey M․
<dstftw@gmail.com>
Sat, 17 Jun 2017 16:50:21 +0000
(23:50 +0700)
committer
Sergey M․
<dstftw@gmail.com>
Sat, 17 Jun 2017 16:50:21 +0000
(23:50 +0700)
youtube_dl/downloader/common.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/common.py
b/youtube_dl/downloader/common.py
index 5d66211476c521c80054558b5d1134ac4179a828..77242dacc48de3221bdef7dc171d2330cac11b56 100644
(file)
--- 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)))