mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-24 13:35:40 +02:00
Minor fixes to python scripts by pycodestyle
This commit is contained in:

committed by
Martin Hořeňovský

parent
64be2ad96c
commit
9e7c281e6e
@@ -15,7 +15,7 @@ def runAndCapture( args ):
|
||||
line = ""
|
||||
while True:
|
||||
out = child.stdout.read(1)
|
||||
if out == '' and child.poll() != None:
|
||||
if out == '' and child.poll():
|
||||
break
|
||||
if out != '':
|
||||
if out == '\n':
|
||||
|
Reference in New Issue
Block a user