Linted
This commit is contained in:
parent
ce64df4e1e
commit
fd224b0842
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue