Skip to content

Commit 7247774

Browse files
committed
test
1 parent 7fe10c4 commit 7247774

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

run-tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

77
def cleanup(out):
88
ret = ''
9-
for s in out.decode('utf-8').split('\n'):
9+
for s in out.decode('utf-8').splitlines():
1010
if len(s) > 1 and s[0] == '#':
1111
continue
1212
s = "".join(s.split())
13-
ret = ret + s
13+
ret = ret + '\n' + s
1414
return ret
1515

1616
commands = []

0 commit comments

Comments
 (0)