Correct post_process_cmd to use shell so it can parse args.

This commit is contained in:
Jim Miller
2011-12-16 10:23:17 -06:00
parent 71981c157f
commit 6c2f025ca1
+1 -1
View File
@@ -199,7 +199,7 @@ def main():
metadata = adapter.story.metadata
metadata['output_filename']=output_filename
call(string.Template(adapter.getConfig("post_process_cmd"))
.substitute(metadata))
.substitute(metadata), shell=True)
del adapter