Merge "Fix the help messages to specify image/flavor name"

This commit is contained in:
Jenkins 2013-08-29 04:17:22 +00:00 committed by Gerrit Code Review
commit 3851245ec4
1 changed files with 2 additions and 2 deletions

View File

@ -206,11 +206,11 @@ def _boot(cs, args, reservation_id=None, min_count=None, max_count=None):
@utils.arg('--flavor',
default=None,
metavar='<flavor>',
help="Flavor ID (see 'nova flavor-list').")
help="Name or ID of flavor (see 'nova flavor-list').")
@utils.arg('--image',
default=None,
metavar='<image>',
help="Image ID (see 'nova image-list'). ")
help="Name or ID of image (see 'nova image-list'). ")
@utils.arg('--image-with',
default=[],
type=_key_value_pairing,