diff options
| author | Jenkins <jenkins@review.openstack.org> | 2014-07-24 22:09:28 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2014-07-24 22:09:28 +0000 |
| commit | e0cf68f995d3f3b0bb6b6a455a6858db7a7139c2 (patch) | |
| tree | db58010d1634cfc23e75552e7475c1083623c06f /openstackclient/compute/v2/hypervisor.py | |
| parent | 8c556e6943f37b1324894c5abe89b416b6e47e6f (diff) | |
| parent | 5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1 (diff) | |
| download | python-openstackclient-e0cf68f995d3f3b0bb6b6a455a6858db7a7139c2.tar.gz | |
Merge "Normalize more help strings"
Diffstat (limited to 'openstackclient/compute/v2/hypervisor.py')
| -rw-r--r-- | openstackclient/compute/v2/hypervisor.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openstackclient/compute/v2/hypervisor.py b/openstackclient/compute/v2/hypervisor.py index 334987e2..e01258d1 100644 --- a/openstackclient/compute/v2/hypervisor.py +++ b/openstackclient/compute/v2/hypervisor.py @@ -25,7 +25,7 @@ from openstackclient.common import utils class ListHypervisor(lister.Lister): - """List hypervisor command""" + """List hypervisors""" log = logging.getLogger(__name__ + ".ListHypervisor") @@ -33,9 +33,9 @@ class ListHypervisor(lister.Lister): parser = super(ListHypervisor, self).get_parser(prog_name) parser.add_argument( "--matching", - metavar="<hostname>", - help="List hypervisors with hostnames matching the given" - " substring") + metavar="<hostname-str>", + help="Filter hypervisors using <hostname-str> substring", + ) return parser def take_action(self, parsed_args): @@ -58,7 +58,7 @@ class ListHypervisor(lister.Lister): class ShowHypervisor(show.ShowOne): - """Show hypervisor command""" + """Show hypervisor details""" log = logging.getLogger(__name__ + ".ShowHypervisor") |
