We don't need this information streamed to stdout

This commit is contained in:
Pedro Algarvio 2014-04-07 00:39:17 +01:00
parent 54355c0184
commit b5c950d3f3

View File

@ -324,7 +324,7 @@ def run(opts):
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
stream_stds=True
stream_stds=False
)
proc.poll_and_read_until_finish()
stdout, _ = proc.communicate()
@ -423,7 +423,7 @@ def run(opts):
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
stream_stds=True
stream_stds=False
)
proc.poll_and_read_until_finish()
stdout, _ = proc.communicate()