summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-07-27 17:36:16 +0000
committerGerrit Code Review <review@openstack.org>2017-07-27 17:36:16 +0000
commit0a53d19a7feadc329534cf04d74411fc51c29e86 (patch)
tree321db43bb1438d335f8252d44f1ff85ab64c0b55
parentaa915cbca826355dd4b651dcfe8e194569e74e77 (diff)
parentead61d6a2181ecc68f3d748640a8dc077e953278 (diff)
downloadpython-novaclient-0a53d19a7feadc329534cf04d74411fc51c29e86.tar.gz
Merge "Help text for "--matching" is not clear."9.1.0
-rw-r--r--novaclient/v2/shell.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py
index becfde00..63c66590 100644
--- a/novaclient/v2/shell.py
+++ b/novaclient/v2/shell.py
@@ -3690,7 +3690,7 @@ def _do_hypervisor_list(cs, matching=None, limit=None, marker=None):
'--matching',
metavar='<hostname>',
default=None,
- help=_('List hypervisors matching the given <hostname>.'))
+ help=_('List hypervisors matching the given <hostname> (or pattern).'))
def do_hypervisor_list(cs, args):
"""List hypervisors."""
_do_hypervisor_list(cs, matching=args.matching)
@@ -3701,7 +3701,7 @@ def do_hypervisor_list(cs, args):
'--matching',
metavar='<hostname>',
default=None,
- help=_('List hypervisors matching the given <hostname>. '
+ help=_('List hypervisors matching the given <hostname> (or pattern). '
'If matching is used limit and marker options will be ignored.'))
@utils.arg(
'--marker',