Merge "Help text for "--matching" is not clear."

This commit is contained in:
Jenkins 2017-07-27 17:36:16 +00:00 committed by Gerrit Code Review
commit 0a53d19a7f
1 changed files with 2 additions and 2 deletions

View File

@ -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',