aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/postprocessor
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-06-17 23:15:57 +0700
committerSergey M․ <dstftw@gmail.com>2017-06-17 23:16:53 +0700
commit8b6ac49ecc873f787f647f1e623af989f85de644 (patch)
tree2ffdbf0b03529f9c63501c42c25db56413579ade /youtube_dl/postprocessor
parentb08e235f09b360262b97ef361a2321839a0534cc (diff)
downloadyoutube-dl-8b6ac49ecc873f787f647f1e623af989f85de644.zip
youtube-dl-8b6ac49ecc873f787f647f1e623af989f85de644.tar.gz
youtube-dl-8b6ac49ecc873f787f647f1e623af989f85de644.tar.bz2
[postprocessor/execafterdownload] Encode command line (closes #13407)
Diffstat (limited to 'youtube_dl/postprocessor')
-rw-r--r--youtube_dl/postprocessor/execafterdownload.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/postprocessor/execafterdownload.py b/youtube_dl/postprocessor/execafterdownload.py
index 90630c2..64dabe7 100644
--- a/youtube_dl/postprocessor/execafterdownload.py
+++ b/youtube_dl/postprocessor/execafterdownload.py
@@ -4,7 +4,10 @@ import subprocess
from .common import PostProcessor
from ..compat import compat_shlex_quote
-from ..utils import PostProcessingError
+from ..utils import (
+ encodeArgument,
+ PostProcessingError,
+)
class ExecAfterDownloadPP(PostProcessor):
@@ -20,7 +23,7 @@ class ExecAfterDownloadPP(PostProcessor):
cmd = cmd.replace('{}', compat_shlex_quote(information['filepath']))
self._downloader.to_screen('[exec] Executing command: %s' % cmd)
- retCode = subprocess.call(cmd, shell=True)
+ retCode = subprocess.call(encodeArgument(cmd), shell=True)
if retCode != 0:
raise PostProcessingError(
'Command returned error code %d' % retCode)