Use print(end='') to silence double newline
Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
This commit is contained in:
parent
d2ea2c0df3
commit
c2bac00530
@ -58,7 +58,7 @@ def main():
|
||||
expected_failures = []
|
||||
unexpected_failures = []
|
||||
for line in proc.stdout:
|
||||
print(line[:-1])
|
||||
print(line, end='')
|
||||
match = test_re.match(line)
|
||||
if match is not None:
|
||||
if match.group(1) is not None:
|
||||
|
Loading…
Reference in New Issue
Block a user