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).
This commit is contained in:
Ken Dreyer 2021-10-20 11:15:40 -04:00
parent 9400ed2aa7
commit cfaa6aa7fc

View file

@ -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] <name>")
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"))