This commit is contained in:
Melissa LeBlanc-Williams 2021-02-11 16:51:41 -08:00
parent ce64df4e1e
commit fd224b0842

View file

@ -73,7 +73,7 @@ class Shell:
while True: while True:
output = proc.stdout.readline() output = proc.stdout.readline()
err = proc.stderr.read() err = proc.stderr.read()
if len(err) and not suppress_message: if err and not suppress_message:
self.error(err.decode("utf-8", errors="ignore")) self.error(err.decode("utf-8", errors="ignore"))
if len(output) == 0 and proc.poll() is not None: if len(output) == 0 and proc.poll() is not None:
break break