diff -r dd94b9a68c61 -r 92932cd370a4 util/ProcessLogger.py --- a/util/ProcessLogger.py Tue Aug 15 16:01:18 2017 +0300 +++ b/util/ProcessLogger.py Tue Aug 15 16:48:49 2017 +0300 @@ -115,7 +115,7 @@ self.finishsem = Semaphore(0) self.endlock = Lock() - popenargs= { + popenargs = { "cwd": os.getcwd() if cwd is None else cwd, "stdin": subprocess.PIPE, "stdout": subprocess.PIPE, @@ -156,7 +156,7 @@ self.outlen += 1 if not self.no_stdout: self.logger.write(v) - if (self.keyword and v.find(self.keyword)!=-1) or (self.outlimit and self.outlen > self.outlimit): + if (self.keyword and v.find(self.keyword) != -1) or (self.outlimit and self.outlen > self.outlimit): self.endlog() def errors(self, v): @@ -198,9 +198,9 @@ ctypes.windll.kernel32.CloseHandle(handle) else: if gently: - sig=SIGTERM + sig = SIGTERM else: - sig=SIGKILL + sig = SIGKILL try: os.kill(self.Proc.pid, sig) except: