From 97496a415494a906f7724b29ddef7ab61cd0d3af Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Mon, 13 Mar 2023 15:24:00 +0100 Subject: [PATCH] Revert "Remove the '-A' option from the 'maintainer' command" This reverts commit 3763bff9018976836569ebc41faa9bdfcbc5f3af. The change is no longer needed, because the argument parser resolves the conflicts now and we can use -A as either --add or --apiurl depending on if we use it before or after the subcommand name. --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index be869ff8..eb75d463 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -8241,7 +8241,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. help='define the project where this package is primarily developed') @cmdln.option('-a', '--add', metavar='user', help='add a new person for given role ("maintainer" by default)') - @cmdln.option('--all', action='store_true', + @cmdln.option('-A', '--all', action='store_true', help='list all found entries not just the first one') @cmdln.option('-s', '--set-bugowner', metavar='user', help='Set the bugowner to specified person (or group via group: prefix)')