summaryrefslogtreecommitdiff
path: root/openstackclient/compute/v2/host.py
diff options
context:
space:
mode:
authorHuanxuan Ao <huanxuan.ao@easystack.cn>2016-06-27 15:27:34 +0800
committerHuanxuan Ao <huanxuan.ao@easystack.cn>2016-06-27 15:27:34 +0800
commitc7b137e42153757d359966f54d50d742a35556e8 (patch)
treea565da73dd17f2d78ddb57ef00d256212e4189a1 /openstackclient/compute/v2/host.py
parent21ac9230e80202b9a736960ace369f0a20af837f (diff)
downloadpython-openstackclient-c7b137e42153757d359966f54d50d742a35556e8.tar.gz
Modify some unusual help messages in computev2
Some command help messages are unusual, for example: common help message for a list command: "list objects" unusual help message: "list obejcets command" I think we should keep help message consistent, so I modify the unusual help messages in computev2. Change-Id: Ic5f11eba1a4397949e85d91cc067519752e89bff
Diffstat (limited to 'openstackclient/compute/v2/host.py')
-rw-r--r--openstackclient/compute/v2/host.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/compute/v2/host.py b/openstackclient/compute/v2/host.py
index 78567589..4785377e 100644
--- a/openstackclient/compute/v2/host.py
+++ b/openstackclient/compute/v2/host.py
@@ -22,7 +22,7 @@ from openstackclient.i18n import _
class ListHost(command.Lister):
- """List host command"""
+ """List hosts"""
def get_parser(self, prog_name):
parser = super(ListHost, self).get_parser(prog_name)
@@ -107,7 +107,7 @@ class SetHost(command.Command):
class ShowHost(command.Lister):
- """Show host command"""
+ """Display host details"""
def get_parser(self, prog_name):
parser = super(ShowHost, self).get_parser(prog_name)