Minor fix to openstack image show command

image show using V2 api was failing.

openstack --os-image-api-version 2 image show <image_id>
ERROR: openstack _info

Closes-Bug: #1450829
Change-Id: Ic95db2f63d9f5f37e29f0d7e048397da311fbf8c
This commit is contained in:
Amey Bhide 2015-04-30 16:38:19 -07:00
parent 28f65e6650
commit 1bb4bb3baf
1 changed files with 1 additions and 1 deletions

View File

@ -248,5 +248,5 @@ class ShowImage(show.ShowOne):
)
info = {}
info.update(image._info)
info.update(image)
return zip(*sorted(six.iteritems(info)))