Fix help message for cluster_scale_in/out

Change-Id: I4f9689fa3bdeab47ae2030552b8568f647c50858
This commit is contained in:
Haiwei Xu 2015-10-14 20:30:03 +09:00
parent e1375bb3b3
commit 5abb2e1b7f

@ -882,7 +882,7 @@ def do_cluster_resize(sc, args):
@utils.arg('-c', '--count', metavar='<COUNT>',
help=_('Number of nodes to be added.'))
help=_('Number of nodes to be added to the specified cluster.'))
@utils.arg('id', metavar='<CLUSTER>',
help=_('Name or ID of cluster to operate on.'))
def do_cluster_scale_out(sc, args):
@ -900,7 +900,7 @@ def do_cluster_scale_out(sc, args):
@utils.arg('-c', '--count', metavar='<COUNT>',
help=_('Number of nodes to be added.'))
help=_('Number of nodes to be deleted from the specified cluster.'))
@utils.arg('id', metavar='<CLUSTER>',
help=_('Name or ID of cluster to operate on.'))
def do_cluster_scale_in(sc, args):