From cfaa6aa7fc1c3aad36b94f75dd45103a5b46fb54 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Oct 20 2021 15:15:40 +0000 Subject: cli: improve help text for add-tag --parent Update the --help text to clarify that the --parent option will add a parent tag at the highest priority (0). --- diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 51e5e33..57f2f21 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -5248,7 +5248,7 @@ def handle_add_tag(goptions, session, args): "[admin] Add a new tag to the database" usage = _("usage: %prog add-tag [options] ") parser = OptionParser(usage=get_usage_str(usage)) - parser.add_option("--parent", help=_("Specify parent")) + parser.add_option("--parent", help=_("Set a parent tag with priority 0")) parser.add_option("--arches", help=_("Specify arches")) parser.add_option("--maven-support", action="store_true", help=_("Enable creation of Maven repos for this tag"))