aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/postprocessor
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-05-10 15:58:25 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-05-10 16:00:21 +0800
commit702ccf2dc08603fed98d2672f86af1a0e300d83e (patch)
tree1be58fdfba6658ed3541fcc37473d49a2aa421f8 /youtube_dl/postprocessor
parent28b4f73620c82e7007b3154e4d5f437cf6fb2608 (diff)
downloadyoutube-dl-702ccf2dc08603fed98d2672f86af1a0e300d83e.zip
youtube-dl-702ccf2dc08603fed98d2672f86af1a0e300d83e.tar.gz
youtube-dl-702ccf2dc08603fed98d2672f86af1a0e300d83e.tar.bz2
[compat] Rename shlex_quote and remove unused subprocess_check_output
Diffstat (limited to 'youtube_dl/postprocessor')
-rw-r--r--youtube_dl/postprocessor/execafterdownload.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/postprocessor/execafterdownload.py b/youtube_dl/postprocessor/execafterdownload.py
index 74f66d6..90630c2 100644
--- a/youtube_dl/postprocessor/execafterdownload.py
+++ b/youtube_dl/postprocessor/execafterdownload.py
@@ -3,7 +3,7 @@ from __future__ import unicode_literals
import subprocess
from .common import PostProcessor
-from ..compat import shlex_quote
+from ..compat import compat_shlex_quote
from ..utils import PostProcessingError
@@ -17,7 +17,7 @@ class ExecAfterDownloadPP(PostProcessor):
if '{}' not in cmd:
cmd += ' {}'
- cmd = cmd.replace('{}', shlex_quote(information['filepath']))
+ cmd = cmd.replace('{}', compat_shlex_quote(information['filepath']))
self._downloader.to_screen('[exec] Executing command: %s' % cmd)
retCode = subprocess.call(cmd, shell=True)