From 1feb35b138b85594cc30931841f3a4e536427477 Mon Sep 17 00:00:00 2001 From: Mehdi Abaakouk Date: Thu, 3 Sep 2015 15:38:18 +0200 Subject: [PATCH] resource: remove -q for --query it conflicts with --quiet --- gnocchiclient/v1/resource_cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnocchiclient/v1/resource_cli.py b/gnocchiclient/v1/resource_cli.py index f1d81b6..f012723 100644 --- a/gnocchiclient/v1/resource_cli.py +++ b/gnocchiclient/v1/resource_cli.py @@ -86,8 +86,7 @@ class CliResourceHistory(CliResourceList): class CliResourceSearch(CliResourceList): def get_parser(self, prog_name): parser = super(CliResourceSearch, self).get_parser(prog_name) - parser.add_argument("-q", "--query", - help="Query"), + parser.add_argument("--query", help="Query"), return parser def take_action(self, parsed_args):