Python 3: fix invalid operation on dict_items objects
One cannot use "+" on "dict_items" objects in Python 3. Partial-Bug: #1500400 Change-Id: Ide04b3eaa70b6f453cbc11442109f8c88b084305
This commit is contained in:
parent
9ccefdac56
commit
d92ac89c67
@ -164,8 +164,8 @@ class Qos(extensions.ExtensionDescriptor):
|
||||
|
||||
def get_extended_resources(self, version):
|
||||
if version == "2.0":
|
||||
return dict(EXTENDED_ATTRIBUTES_2_0.items() +
|
||||
RESOURCE_ATTRIBUTE_MAP.items())
|
||||
return dict(list(EXTENDED_ATTRIBUTES_2_0.items()) +
|
||||
list(RESOURCE_ATTRIBUTE_MAP.items()))
|
||||
else:
|
||||
return {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user