1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 17:26:15 +02:00

allow to set a temporary comment for a review via "osc review new"

(Fate #307506)
This commit is contained in:
Adrian Schröter 2010-05-19 14:12:49 +02:00
parent beae2c0cdd
commit 41f925addc

View File

@ -1110,6 +1110,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
osc request checkout/co ID
osc review accept [-m TEXT] ID
osc review decline [-m TEXT] ID
osc review new [-m TEXT] ID # for setting a temporary comment without changing the state
${cmd_option_list}
"""
@ -1299,7 +1300,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
state_map = {'accept' : 'accepted', 'decline' : 'declined', 'wipe' : 'deleted', 'revoke' : 'revoked'}
# Change review state only
if subcmd == 'review':
if cmd in ['accept', 'decline']:
if cmd in ['accept', 'decline', 'new']:
r = change_review_state(conf.config['apiurl'],
reqid, state_map[cmd], conf.config['user'], '', opts.message or '')
print r