bundles/backup-client: fix newlines
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2021-08-04 15:55:14 +02:00
parent 55d481b86c
commit 0f425036b2
Signed by: kunsi
GPG key ID: 12E3D2136B818350
2 changed files with 7 additions and 2 deletions

View file

@ -37,5 +37,6 @@ elif exitcode == 'abort_no_key':
exit(1)
else:
# garbage in file
print(' '.join(status))
for line in status:
print(line)
exit(3)