Skip to content

Commit

Permalink
pwclient: Remove unhandled action 'save'
Browse files Browse the repository at this point in the history
The 'save' action really is called 'get' (as opposed to 'view').

Signed-off-by: Bernhard Reutner-Fischer <[email protected]>
Signed-off-by: Jeremy Kerr <[email protected]>
  • Loading branch information
aldot authored and jk-ozlabs committed Nov 10, 2014
1 parent 9517d2c commit 1264014
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/patchwork/bin/pwclient
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ def main():
for patch_id in non_empty(h, patch_ids):
action_info(rpc, patch_id)

elif action in ('get', 'save'):
elif action == 'get':
for patch_id in non_empty(h, patch_ids):
action_get(rpc, patch_id)

Expand Down

0 comments on commit 1264014

Please sign in to comment.