diff options
| author | Jaspreet Singh Rawel <jaspreetsinghrawel@gmail.com> | 2016-11-10 02:05:54 +0530 |
|---|---|---|
| committer | Jaspreet Singh Rawel <jaspreetsinghrawel@gmail.com> | 2016-11-11 12:38:37 +0530 |
| commit | ff7fda061e4f89744b2c6d237ab913225b2ee14e (patch) | |
| tree | 0593c56b3ca1972eb32725b76341eee7ac42a7dc | |
| parent | 8b2f25682850ca747dcc0961b894ed5f5644580a (diff) | |
| download | python-openstackclient-ff7fda061e4f89744b2c6d237ab913225b2ee14e.tar.gz | |
Show disk format vhdx in help
Currently disk format type vhdx is missing in help.
Closes-Bug: 1635518
Change-Id: Ibe5976f722c4eb966b12a7b1e1c2702fd08ce84b
| -rw-r--r-- | openstackclient/image/v1/image.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/image/v1/image.py b/openstackclient/image/v1/image.py index 5f669c64..fc54cc89 100644 --- a/openstackclient/image/v1/image.py +++ b/openstackclient/image/v1/image.py @@ -503,7 +503,7 @@ class SetImage(command.Command): choices=container_choices ) disk_choices = ["ami", "ari", "aki", "vhd", "vmdk", "raw", "qcow2", - "vdi", "iso"] + "vhdx", "vdi", "iso"] parser.add_argument( "--disk-format", metavar="<disk-format>", |
