summaryrefslogtreecommitdiff
path: root/openstackclient/compute/v2/console.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-07-24 22:09:28 +0000
committerGerrit Code Review <review@openstack.org>2014-07-24 22:09:28 +0000
commite0cf68f995d3f3b0bb6b6a455a6858db7a7139c2 (patch)
treedb58010d1634cfc23e75552e7475c1083623c06f /openstackclient/compute/v2/console.py
parent8c556e6943f37b1324894c5abe89b416b6e47e6f (diff)
parent5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1 (diff)
downloadpython-openstackclient-e0cf68f995d3f3b0bb6b6a455a6858db7a7139c2.tar.gz
Merge "Normalize more help strings"
Diffstat (limited to 'openstackclient/compute/v2/console.py')
-rw-r--r--openstackclient/compute/v2/console.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/compute/v2/console.py b/openstackclient/compute/v2/console.py
index e1f84e23..8206f302 100644
--- a/openstackclient/compute/v2/console.py
+++ b/openstackclient/compute/v2/console.py
@@ -26,7 +26,7 @@ from openstackclient.common import utils
class ShowConsoleLog(command.Command):
- """Show console-log command"""
+ """Show server's console output"""
log = logging.getLogger(__name__ + '.ShowConsoleLog')
@@ -35,7 +35,7 @@ class ShowConsoleLog(command.Command):
parser.add_argument(
'server',
metavar='<server>',
- help='Name or ID of server to display console log',
+ help='Server (name or ID)',
)
parser.add_argument(
'--lines',
@@ -67,7 +67,7 @@ class ShowConsoleLog(command.Command):
class ShowConsoleURL(show.ShowOne):
- """Show console-url command"""
+ """Show server's remote console URL"""
log = logging.getLogger(__name__ + '.ShowConsoleURL')
@@ -76,7 +76,7 @@ class ShowConsoleURL(show.ShowOne):
parser.add_argument(
'server',
metavar='<server>',
- help='Name or ID of server to display console log',
+ help='Server (name or ID)',
)
type_group = parser.add_mutually_exclusive_group()
type_group.add_argument(