mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-01-09 10:09:57 +01:00
fix PEP8 in processManager
This commit is contained in:
parent
806a0d476a
commit
5cee58a67e
|
|
@ -107,7 +107,7 @@ class ProcessManager:
|
|||
@param matchText: string to search for in output
|
||||
"""
|
||||
logging.debug("skip lines till %s from output", matchText)
|
||||
while not matchText in self.readline():
|
||||
while matchText not in self.readline():
|
||||
pass
|
||||
|
||||
def setStdin(self, stdin):
|
||||
|
|
|
|||
Loading…
Reference in a new issue