Fix for py2.6 (no dict comprehensions on py2.6)
This commit is contained in:
parent
8ed415589a
commit
31cc5f543f
1 changed files with 2 additions and 1 deletions
|
@ -593,7 +593,8 @@ def get_instance_info(inst):
|
|||
'state': inst.state,
|
||||
'hypervisor': inst.hypervisor,
|
||||
'tags': inst.tags,
|
||||
'groups': {group.id: group.name for group in inst.groups}}
|
||||
'groups': dict((group.id, group.name) for group in inst.groups),
|
||||
}
|
||||
try:
|
||||
instance_info['virtualization_type'] = getattr(inst,'virtualization_type')
|
||||
except AttributeError:
|
||||
|
|
Loading…
Reference in a new issue