1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 03:02:50 +01:00

[postprocessor:exec] do not auto-add '{}' to command (#1185)

This was initially done to mimic youtube-dl's behavior and
implementation of --exec, and it seemed reasonable at the time.
This commit is contained in:
Mike Fährmann 2020-12-19 20:37:29 +01:00
parent 0a3bbc9c63
commit e8c64dd961
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -30,8 +30,6 @@ class ExecPP(PostProcessor):
args = options["command"]
if isinstance(args, str):
if "{}" not in args:
args += " {}"
self.args = args
execute = self.exec_string
else: