fix PEP8 in processManager

This commit is contained in:
Bastian Schroll 2019-10-18 09:21:50 +02:00
parent 806a0d476a
commit 5cee58a67e

View file

@ -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):