blockdevice.py: python3 fixes
keys() is an iterator in python3, so we need to make it list before finding the first element Change-Id: Ic158c7b2901c1a34ff417d3432fcefed4760ce24
This commit is contained in:
parent
8b19f7f99d
commit
b04c58eca4
@ -133,7 +133,7 @@ class BlockDevice(object):
|
||||
raise BlockDeviceSetupException(
|
||||
"Top level config must contain exactly one key per entry")
|
||||
logger.debug("Config entry [%s]" % config_entry)
|
||||
cfg_obj_name = config_entry.keys()[0]
|
||||
cfg_obj_name = list(config_entry.keys())[0]
|
||||
cfg_obj_val = config_entry[cfg_obj_name]
|
||||
|
||||
# As the first step the configured objects are created
|
||||
|
Loading…
Reference in New Issue
Block a user