From 7e072a3308fb43fba06e94e9b30d8c9f1638a77b Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Sat, 22 Nov 2014 20:38:45 -0800 Subject: pwclient: add project option to single-patch commands Previously, we could not target a particular server instance with the apply, git-am, info, and view subcommands. Under a single-server design, we never needed to target a particular project for a patch. We just targeted the patch itself. But with the advent of multi-server .pwclientrc configurations, we should allow pwclient to specify the project for these commands. This adds the '-p PROJECT' option to: * apply * git-am * info * view Signed-off-by: Brian Norris Signed-off-by: Jeremy Kerr --- apps/patchwork/bin/pwclient | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/patchwork/bin/pwclient b/apps/patchwork/bin/pwclient index 2a80981..483330e 100755 --- a/apps/patchwork/bin/pwclient +++ b/apps/patchwork/bin/pwclient @@ -359,6 +359,10 @@ def main(): 'id', metavar='ID', nargs='*', action='store', type=int, help='Patch ID', ) + hash_parser.add_argument( + '-p', metavar='PROJECT', + help='''Lookup patch in project''' + ) filter_parser = argparse.ArgumentParser(add_help=False, version=False) filter_parser.add_argument( -- cgit v1.2.3