Fix typo in image-update help page

The image-update help page reversed the DISK_FORMAT
and CONTAINER_FORMAT metavars.

Fixes bug #1111054

Change-Id: Iec8374782d00e8e9102141fb1e1c16d7f6ac136c
This commit is contained in:
David Wittman
2013-01-30 22:04:11 -06:00
parent 542a45bd28
commit ed67c32014

View File

@@ -224,10 +224,10 @@ def do_image_create(gc, args):
@utils.arg('image', metavar='<IMAGE>', help='Name or ID of image to modify.') @utils.arg('image', metavar='<IMAGE>', help='Name or ID of image to modify.')
@utils.arg('--name', metavar='<NAME>', @utils.arg('--name', metavar='<NAME>',
help='Name of image.') help='Name of image.')
@utils.arg('--disk-format', metavar='<CONTAINER_FORMAT>', @utils.arg('--disk-format', metavar='<DISK_FORMAT>',
help='Disk format of image. ' + CONTAINER_FORMATS) help='Disk format of image. ' + DISK_FORMATS)
@utils.arg('--container-format', metavar='<DISK_FORMAT>', @utils.arg('--container-format', metavar='<CONTAINER_FORMAT>',
help='Container format of image. ' + DISK_FORMATS) help='Container format of image. ' + CONTAINER_FORMATS)
@utils.arg('--owner', metavar='<TENANT_ID>', @utils.arg('--owner', metavar='<TENANT_ID>',
help='Tenant who should own image.') help='Tenant who should own image.')
@utils.arg('--size', metavar='<SIZE>', @utils.arg('--size', metavar='<SIZE>',