aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/postprocessor/exec.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-10-05 23:30:14 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2021-10-05 23:30:14 -0400
commit8b421b927aefe1cc21d54db8c6abfba6bd754096 (patch)
tree12c3db412bf13c53ef576f6053681575f66fb36a /gallery_dl/postprocessor/exec.py
parent17e8877df22d5a965d3c92ce640b089e88d82d2b (diff)
parent34ba2951b8c523713425c98addb9256ea05c946f (diff)
Update upstream source from tag 'upstream/1.19.0'
Update to upstream version '1.19.0' with Debian dir bc64f5039c209cd32cdb1030e3058fdb88976bac
Diffstat (limited to 'gallery_dl/postprocessor/exec.py')
-rw-r--r--gallery_dl/postprocessor/exec.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gallery_dl/postprocessor/exec.py b/gallery_dl/postprocessor/exec.py
index 8fed723..cc217c3 100644
--- a/gallery_dl/postprocessor/exec.py
+++ b/gallery_dl/postprocessor/exec.py
@@ -9,7 +9,7 @@
"""Execute processes"""
from .common import PostProcessor
-from .. import util
+from .. import util, formatter
import subprocess
@@ -33,7 +33,7 @@ class ExecPP(PostProcessor):
self.args = args
execute = self.exec_string
else:
- self.args = [util.Formatter(arg) for arg in args]
+ self.args = [formatter.parse(arg) for arg in args]
execute = self.exec_list
events = options.get("event")