From d7a080cb6864c9272c156c6355ba3f190c176389 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Fri, 20 Jan 2023 09:58:31 -0500 Subject: [PATCH] cli: improve help for call --python option The --python option is for input values, not output values. Update the --help message to explain this. --- cli/koji_cli/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/koji_cli/commands.py b/cli/koji_cli/commands.py index c4cf9954..754b2ae0 100644 --- a/cli/koji_cli/commands.py +++ b/cli/koji_cli/commands.py @@ -965,7 +965,7 @@ def handle_call(goptions, session, args): Note, that you can use global option --noauth for anonymous calls here""" usage = textwrap.dedent(usage) parser = OptionParser(usage=get_usage_str(usage)) - parser.add_option("--python", action="store_true", help="Use python syntax for values") + parser.add_option("--python", action="store_true", help="Use python syntax for RPC parameter values") parser.add_option("--kwargs", help="Specify keyword arguments as a dictionary (implies --python)") parser.add_option("--json-output", action="store_true", help="Use JSON syntax for output")