From 7a24b0f7badd9fe00422c98afcb7771bdbc45cfd Mon Sep 17 00:00:00 2001 From: Radoslav Gerganov Date: Wed, 22 Jun 2016 13:28:04 +0300 Subject: [PATCH] Fix the help message for 'get-mks-console' MKS is not a serial console but the standard type of VM console for VMware instances. Change-Id: I9a9a03e259f16ba2b6b6fd0751ad47b95f837a78 Closes-Bug: #1595131 --- novaclient/v2/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py index 042b35435..268e449e4 100644 --- a/novaclient/v2/shell.py +++ b/novaclient/v2/shell.py @@ -2509,7 +2509,7 @@ def do_get_serial_console(cs, args): @api_versions.wraps('2.8') @utils.arg('server', metavar='', help=_('Name or ID of server.')) def do_get_mks_console(cs, args): - """Get a serial console to a server.""" + """Get an MKS console to a server.""" server = _find_server(cs, args.server) data = server.get_mks_console()