1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-11 16:36:14 +01:00

Sigh... fix error message

This commit is contained in:
Marcus Huewe 2016-09-09 13:23:55 +02:00
parent 008c456942
commit 3b1409fd33

View File

@ -4557,7 +4557,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
print("ERROR: service run failed", e, file=sys.stderr)
return 1
except oscerr.PackageNotInstalled as e:
print("ERROR: please install %s" % e.args, end='')
print("ERROR: please install %s " % e.args, end='')
print("or use the --noservice option")
return 1