From d75888fbd40970cc2687e5ac308a29c5f95a60db Mon Sep 17 00:00:00 2001 From: Marcus Huewe Date: Sat, 26 Dec 2009 14:25:58 +0100 Subject: [PATCH] - fixed do_submitrequest --- osc/commandline.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osc/commandline.py b/osc/commandline.py index e2811e3f..e6bc3a0b 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -762,8 +762,7 @@ class Osc(cmdln.Cmdln): if not opts.yes: if pi: - str=", " - print "Submitting patchinfo ", str.join(pi), " to ", str.join(targetprojects) + print "Submitting patchinfo ", ', '.join(pi), " to ", ', '.join(targetprojects) print "\nEverything fine? Can we create the requests ? [y/n]" if sys.stdin.read(1) != "y": sys.exit("Aborted...")