Redirect stderr to stdout and stdout to DEVNULL when quiet is requested.

This commit is contained in:
Tercio Gaudencio Filho 2020-10-30 17:29:44 -03:00
parent c12e8890ad
commit 0ec6e69d88
No known key found for this signature in database
GPG Key ID: EDF007606002A606

View File

@ -282,7 +282,8 @@ def run_async(
stdout_stream = subprocess.PIPE if pipe_stdout else None
stderr_stream = subprocess.PIPE if pipe_stderr else None
if quiet:
stdout_stream = stderr_stream = subprocess.DEVNULL
stderr_stream = subprocess.STDOUT
stdout_stream = subprocess.DEVNULL
return subprocess.Popen(
args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream
)