Fix help messages for resource-listing commands

--fields takes a space-separated list and not a comma-separated list.

Change-Id: Id595970d97f46a8a024133f7cc7d8594fcb4be3b
This commit is contained in:
git-harry 2017-02-10 15:41:15 +00:00
parent 24de28869d
commit 9ba64600ee
4 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ def do_cell_show(cc, args):
nargs='+',
metavar='<fields>',
default=[],
help='Comma-separated list of fields to display. '
help='Space-separated list of fields to display. '
'Only these fields will be fetched from the server. '
'Can not be used when "--detail" is specified')
def do_cell_list(cc, args):

View File

@ -60,7 +60,7 @@ def do_host_show(cc, args):
nargs='+',
metavar='<fields>',
default=[],
help='Comma-separated list of fields to display. '
help='Space-separated list of fields to display. '
'Only these fields will be fetched from the server. '
'Can not be used when "--detail" is specified')
def do_host_list(cc, args):

View File

@ -44,7 +44,7 @@ def do_project_show(cc, args):
nargs='+',
metavar='<fields>',
default=[],
help='Comma-separated list of fields to display. '
help='Space-separated list of fields to display. '
'Only these fields will be fetched from the server. '
'Can not be used when "--detail" is specified')
def do_project_list(cc, args):

View File

@ -41,7 +41,7 @@ def do_region_create(cc, args):
nargs='+',
metavar='<fields>',
default=[],
help='Comma-separated list of fields to display. '
help='Space-separated list of fields to display. '
'Only these fields will be fetched from the server. '
'Can not be used when "--detail" is specified')
def do_region_list(cc, args):