From 52014ba11e549f7e83b59c48a73a6d0510212540 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Sat, 30 Jun 2012 11:20:12 +0200 Subject: [PATCH] - fix creator name in forwarded requests --- osc/commandline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index eda4b5ff..9b598ffe 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -2194,7 +2194,8 @@ Please submit there instead, or use --nodevelproject to force direct submission. print "/", package, repl = raw_input('\nForward this submit to it? ([y]/n)') if repl.lower() == 'y' or repl == '': - msg = cgi.escape("%s (forwarded request %s from %s)" % ( rq.description, reqid, rq.get_creator)) + msg = "%s (forwarded request %s from %s)" % ( rq.description, reqid, rq.get_creator()) + print msg rid = create_submit_request(apiurl, action.tgt_project, action.tgt_package, project, package, msg) print "New request #", rid