From c066858ce1d3f5212c83d3d14cb2c455c1b37bce Mon Sep 17 00:00:00 2001 From: Geir Arne Aasen Date: Fri, 5 Apr 2024 09:10:01 +0200 Subject: [PATCH] Fix service help text reference to positional argument 'service types' --- aiven/client/cliarg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiven/client/cliarg.py b/aiven/client/cliarg.py index 1b3ea9f..b130511 100644 --- a/aiven/client/cliarg.py +++ b/aiven/client/cliarg.py @@ -176,7 +176,7 @@ def wrapped(self: CommandLineTool) -> T: ) arg.service_name = arg("service_name", help="Service name") arg.service_name_mandatory = arg("service_name", help="Service name", required=True) -arg.service_type = arg("-t", "--service-type", help="Type of service (see 'service list-types')") +arg.service_type = arg("-t", "--service-type", help="Type of service (see 'service types')") arg.static_ip_id = arg("static_ip_id", help="Static IP address ID") arg.ns_name = arg("ns_name", help="Namespace name") arg.ns_type = arg("--ns-type", help="Namespace type ('aggregated' or 'unaggregated')", required=True)