From e8a5b83528328103f23b0205da211a4ab4f1dd9b Mon Sep 17 00:00:00 2001 From: Joshua Hesketh Date: Wed, 9 Oct 2013 16:13:21 +1100 Subject: [PATCH] Revert "capture stderr into stdout" This reverts commit 94ca7c271fe6d36d2eff7f0ad24dadc7fad1caea. --- turbo_hipster/lib/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbo_hipster/lib/utils.py b/turbo_hipster/lib/utils.py index b591369..5a0237d 100644 --- a/turbo_hipster/lib/utils.py +++ b/turbo_hipster/lib/utils.py @@ -123,7 +123,7 @@ def execute_to_log(cmd, logfile, timeout=-1, cmd += ' 2>&1' start_time = time.time() p = subprocess.Popen( - cmd, shell=True, stderr=subprocess.STDOUT) + cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) descriptors[p.stdout.fileno()] = dict( name='[output]',