From c7e150549cd96816dd0bf179e98755b1a7cafd02 Mon Sep 17 00:00:00 2001 From: Chenxiong Qi Date: Mar 14 2019 03:43:22 +0000 Subject: Reword remove-module help and --tag option help text Signed-off-by: Chenxiong Qi --- diff --git a/ursa_major/cli.py b/ursa_major/cli.py index fc57d28..acb1595 100644 --- a/ursa_major/cli.py +++ b/ursa_major/cli.py @@ -150,14 +150,17 @@ def main(args=None): remove_module_parser = subparser.add_parser( "remove-module", parents=[global_args_parser, module_config_parser], - help="remove a module from tag config file tag, and remove the " - "tags of that module from koji tag inheritance") + help="remove a module config from a tag and also remove that module's " + "koji_tag if it inherits from that tag.") remove_module_parser.set_defaults(_class=RemoveModuleHandler, func='run') remove_module_parser.add_argument( '--tag', metavar='TAG', required=True, - help="koji tag we operate against (required)") + help="a tag name (required). Specified module config will be removed " + "if tag presents in tag config file and has the module config. " + "The module's koji_tag will also be removed from tag inheritance " + "if it inherits from this tag.") remove_module_parser.add_argument( '--not-update-config', action='store_true', default=False,