From b14c9cfd92b19ef8ff3b94dc71b37be34d1af4c1 Mon Sep 17 00:00:00 2001 From: Stefan Knorr Date: Fri, 24 May 2019 13:22:30 +0200 Subject: [PATCH 5/9] Add "prioritize" as (preferred) alias for "priorize" command "priorize" is not an English word, "prioritize" is the correct version: * https://www.merriam-webster.com/dictionary/priorize * https://www.merriam-webster.com/dictionary/prioritize The "priorize" command will continue to exist after this commit, but the documented version will be "prioritize". --- osc/commandline.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/osc/commandline.py b/osc/commandline.py index 8c22002..888be1d 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -2148,7 +2148,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. "checkout" will checkout the request's source package ("submit" requests only). - "priorize" change the prioritity of a request to either "critical", "important", "moderate" or "low" + "prioritize" change the priority of a request to either "critical", "important", "moderate" or "low" The 'review' command has the following sub commands: @@ -2177,7 +2177,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. osc request setincident [-m TEXT] ID INCIDENT osc request supersede [-m TEXT] ID SUPERSEDING_ID osc request approvenew [-m TEXT] PROJECT - osc request priorize [-m TEXT] ID PRIORITY + osc request prioritize [-m TEXT] ID PRIORITY osc request checkout/co ID osc request clone [-m TEXT] ID @@ -2218,7 +2218,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. return self.do_help(['help', 'request']) cmds = ['list', 'ls', 'log', 'show', 'decline', 'reopen', 'clone', 'accept', 'approve', 'cancelapproval', - 'approvenew', 'wipe', 'setincident', 'supersede', 'revoke', 'checkout', 'co', 'priorize'] + 'approvenew', 'wipe', 'setincident', 'supersede', 'revoke', 'checkout', 'co', 'priorize', 'prioritize'] if subcmd != 'review' and args[0] not in cmds: raise oscerr.WrongArgs('Unknown request action %s. Choose one of %s.' \ % (args[0], ', '.join(cmds))) @@ -2236,7 +2236,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. if cmd in ['list']: min_args, max_args = 0, 2 - elif cmd in ['supersede', 'setincident', 'priorize']: + elif cmd in ['supersede', 'setincident', 'prioritize', 'priorize']: min_args, max_args = 2, 2 else: min_args, max_args = 1, 1 @@ -2275,7 +2275,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. elif cmd == 'setincident': reqid = args[0] incident = args[1] - elif cmd == 'priorize': + elif cmd in ['prioritize', 'priorize']: reqid = args[0] priority = args[1] elif cmd in ['log', 'add', 'show', 'decline', 'reopen', 'clone', 'accept', 'wipe', 'revoke', 'checkout', @@ -2302,7 +2302,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. print(ET.parse(r).getroot().get('code')) # change priority - elif cmd == 'priorize': + elif cmd in ['prioritize', 'priorize']: query = { 'cmd': 'setpriority', 'priority': priority } url = makeurl(apiurl, ['request', reqid], query) r = http_POST(url, data=opts.message) -- 2.21.0