From: Bernhard Reutner-Fischer Date: Mon, 8 Sep 2014 15:24:25 +0000 (+0200) Subject: pwclient: Remove unhandled action 'save' X-Git-Tag: v0.9.0~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12640140834e7a5fb2f1bf47bb4be8da4dc29bd0;p=thirdparty%2Fpatchwork.git pwclient: Remove unhandled action 'save' The 'save' action really is called 'get' (as opposed to 'view'). Signed-off-by: Bernhard Reutner-Fischer Signed-off-by: Jeremy Kerr --- diff --git a/apps/patchwork/bin/pwclient b/apps/patchwork/bin/pwclient index b86949c2..d630c5bb 100755 --- a/apps/patchwork/bin/pwclient +++ b/apps/patchwork/bin/pwclient @@ -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)