From f729ea8e38d30719b6df91e3a6ee7bff5e7f7a67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Wed, 12 Jan 2011 11:29:46 +0100 Subject: [PATCH] fix add_me request --- osc/commandline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osc/commandline.py b/osc/commandline.py index 423fd3e8..90def26b 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -1249,8 +1249,8 @@ Please submit there instead, or use --nodevelproject to force direct submission. apiurl = self.get_api_url() user = conf.get_apiurl_usr(apiurl) - role = args[1] - project = args[2] + role = args[0] + project = args[1] actionxml = """ """ % \ (project, user, role)