Commit c351c350 by Solkaz

Remove empty args from argument_list

parent b8bcfe0f
...@@ -112,6 +112,8 @@ class SubProcessCompiler(CompilerBase): ...@@ -112,6 +112,8 @@ class SubProcessCompiler(CompilerBase):
else: else:
argument_list.extend(flattening_arg) argument_list.extend(flattening_arg)
# Filter out empty elements in argument_list
argument_list = filter(None, argument_list)
stdout = None stdout = None
try: try:
# We always catch stdout in a file, but we may not have a use for it. # We always catch stdout in a file, but we may not have a use for it.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment