]> git.ozlabs.org Git - patchwork/commitdiff
pwclient: Remove unhandled action 'save'
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 8 Sep 2014 15:24:25 +0000 (17:24 +0200)
committerJeremy Kerr <jk@ozlabs.org>
Mon, 10 Nov 2014 12:13:11 +0000 (20:13 +0800)
The 'save' action really is called 'get' (as opposed to 'view').

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
apps/patchwork/bin/pwclient

index b86949c264b94246d30fff84ad39e48b343bb6b7..d630c5bba0797dda709077c470026d3d9dbcc8cf 100755 (executable)
@@ -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)