From 5bb6c72ef72b2d83f5ddeaf4b3c09a89b76ba0a1 Mon Sep 17 00:00:00 2001 From: Dean Troyer Date: Fri, 20 Jun 2014 10:06:05 -0500 Subject: Normalize more help strings Change-Id: I2b21bc904e35c1cc50da369d148e607fe3e8cf90 --- openstackclient/compute/v2/hypervisor.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'openstackclient/compute/v2/hypervisor.py') 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="", - help="List hypervisors with hostnames matching the given" - " substring") + metavar="", + help="Filter hypervisors using 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") -- cgit v1.2.1