From 3b1409fd33df2ee11a815cda2ae73a836dc0b745 Mon Sep 17 00:00:00 2001 From: Marcus Huewe Date: Fri, 9 Sep 2016 13:23:55 +0200 Subject: [PATCH] Sigh... fix error message --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index 0db80ab7..52a0c33d 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -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