summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucian Petrut <lpetrut@cloudbasesolutions.com>2019-07-30 13:39:29 +0300
committerLucian Petrut <lpetrut@cloudbasesolutions.com>2019-07-30 13:42:18 +0300
commita56106092e521f811034041a4e2ee6f8f1295be1 (patch)
treef2f98fd4ae14a9c05dff872e49e83f79713d4dd8
parent68cb66b5d0668cf2cb06f621309b3e4e5d7fd293 (diff)
downloadpython-glanceclient-a56106092e521f811034041a4e2ee6f8f1295be1.tar.gz
Trivial: fix image format typo
The Glance V1 image format list contains "VDHX", which is a typo. This change fixes it, using the correct format name, which is "VHDX". Luckily, this seems to be used only as part of a help string. Change-Id: I392f25b3ee0ee9ac6024e1670053191e4bba937a
-rw-r--r--glanceclient/v1/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glanceclient/v1/shell.py b/glanceclient/v1/shell.py
index c60ee3f..8a4d29d 100644
--- a/glanceclient/v1/shell.py
+++ b/glanceclient/v1/shell.py
@@ -30,7 +30,7 @@ import glanceclient.v1.images
CONTAINER_FORMATS = ('Acceptable formats: ami, ari, aki, bare, ovf, ova,'
'docker.')
-DISK_FORMATS = ('Acceptable formats: ami, ari, aki, vhd, vdhx, vmdk, raw, '
+DISK_FORMATS = ('Acceptable formats: ami, ari, aki, vhd, vhdx, vmdk, raw, '
'qcow2, vdi, iso, and ploop.')
DATA_FIELDS = ('location', 'copy_from', 'file')