From 7faa36f523753472f0bda475dff0c9f54f26c703 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Apr 22 2020 19:29:31 +0000 Subject: cli: fix "list-history --help" text for "--cg" Fix a bad copy-and-paste in the --help text for the "koji list-history" command. --- diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index 0a8a88e..01f7587 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -4439,7 +4439,8 @@ def anon_handle_list_history(goptions, session, args): help=_("Only show entries modified by user")) parser.add_option("--user", help=_("Only show entries affecting a user")) parser.add_option("--permission", help=_("Only show entries relating to a given permission")) - parser.add_option("--cg", help=_("Only show entries relating to a given permission")) + parser.add_option("--cg", + help=_("Only show entries relating to a given content generator")) parser.add_option("--external-repo", "--erepo", help=_("Only show entries relating to a given external repo")) parser.add_option("--build-target", "--target",