Revert "capture stderr into stdout"

This reverts commit 94ca7c271f.
This commit is contained in:
Joshua Hesketh 2013-10-09 16:13:21 +11:00
parent 94ca7c271f
commit e8a5b83528

View File

@ -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]',