From af4cfb0f64ff064feb71cb6eb1634c153218d4aa Mon Sep 17 00:00:00 2001 From: scottda Date: Thu, 4 Aug 2016 16:50:42 -0600 Subject: [PATCH] Change api-version help to indicate server API The help for the 'api-version' command should state that it is displaying the api-version info for the server, not the client: Display the server API version information. Change-Id: Ia4380871ddca1b7ff41a5e6c8cf86488626e69fc --- cinderclient/v3/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinderclient/v3/shell.py b/cinderclient/v3/shell.py index 74d9a3e5b..74f18625c 100644 --- a/cinderclient/v3/shell.py +++ b/cinderclient/v3/shell.py @@ -2785,7 +2785,7 @@ def do_failover_host(cs, args): @utils.service_type('volumev3') @api_versions.wraps("3.0") def do_api_version(cs, args): - """Display the API version information.""" + """Display the server API version information.""" columns = ['ID', 'Status', 'Version', 'Min_version'] response = cs.services.server_api_version() utils.print_list(response, columns)