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:
|
||||
output = proc.stdout.readline()
|
||||
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"))
|
||||
if len(output) == 0 and proc.poll() is not None:
|
||||
break
|
||||
|
|
|
|||
Loading…
Reference in a new issue