Commit c7bf2821 by Calen Pennington

Don't capture the output of i18n command execution

parent 9c9de016
......@@ -11,7 +11,7 @@ def execute(command, working_directory=BASE_DIR):
Output is ignored.
"""
LOG.info(command)
subprocess.check_output(command.split(' '), cwd=working_directory, stderr=subprocess.STDOUT)
subprocess.check_call(command, cwd=working_directory, stderr=sys.STDOUT, shell=True)
def call(command, working_directory=BASE_DIR):
......
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