From c7bf2821115a9a90106f0311cbd5f23d70b05fb3 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 22 Jan 2014 10:00:05 -0500 Subject: [PATCH] Don't capture the output of i18n command execution --- i18n/execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n/execute.py b/i18n/execute.py index 28222177c4..43bdec2deb 100644 --- a/i18n/execute.py +++ b/i18n/execute.py @@ -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):