From 0158d5e377cce9d3cb652ce0327d3b508808d187 Mon Sep 17 00:00:00 2001 From: Michal Vyskocil Date: Mon, 1 Jun 2009 12:20:53 +0000 Subject: [PATCH] call buildvc with all command line arguments --- osc/commandline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osc/commandline.py b/osc/commandline.py index 48eb3f19..23b81873 100755 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -3152,8 +3152,8 @@ Please submit there instead, or use --nodevelproject to force direct submission. if opts.just_edit: cmd_list.append("-e") - if arg: - cmd_list.append(arg) + if args: + cmd_list.extend(args) vc = Popen(cmd_list) vc.wait()