1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Remove extra blank lines in makebuildserver output

These seem to have appeared during the py3 conversion.
This commit is contained in:
Ciaran Gultnieks 2016-03-21 08:45:42 +00:00
parent a6d4081822
commit 009a926ea4

View File

@ -27,7 +27,7 @@ def vagrant(params, cwd=None, printout=False):
line = p.stdout.readline()
if len(line) == 0:
break
print(line)
print(line.rstrip())
out += line
p.wait()
else: