mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-06 01:22:35 +00:00
[postprocessor/execafterdownload] Encode command line (closes #13407)
This commit is contained in:
parent
b08e235f09
commit
8b6ac49ecc
@ -4,7 +4,10 @@ import subprocess
|
|||||||
|
|
||||||
from .common import PostProcessor
|
from .common import PostProcessor
|
||||||
from ..compat import compat_shlex_quote
|
from ..compat import compat_shlex_quote
|
||||||
from ..utils import PostProcessingError
|
from ..utils import (
|
||||||
|
encodeArgument,
|
||||||
|
PostProcessingError,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class ExecAfterDownloadPP(PostProcessor):
|
class ExecAfterDownloadPP(PostProcessor):
|
||||||
@ -20,7 +23,7 @@ class ExecAfterDownloadPP(PostProcessor):
|
|||||||
cmd = cmd.replace('{}', compat_shlex_quote(information['filepath']))
|
cmd = cmd.replace('{}', compat_shlex_quote(information['filepath']))
|
||||||
|
|
||||||
self._downloader.to_screen('[exec] Executing command: %s' % cmd)
|
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:
|
if retCode != 0:
|
||||||
raise PostProcessingError(
|
raise PostProcessingError(
|
||||||
'Command returned error code %d' % retCode)
|
'Command returned error code %d' % retCode)
|
||||||
|
Loading…
Reference in New Issue
Block a user