Python3: do not use '+' on dict_items objects
In Python 3, dict.items() returns an iterator. Iterators cannot be added. Blueprint: neutron-python3 Change-Id: I487178ebceae9946cb53dea1e847d7715f4577f3
This commit is contained in:
parent
4d35f15265
commit
4f5171d2ce
@ -326,8 +326,8 @@ class Securitygroup(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 {}
|
||||
|
||||
|
@ -1672,7 +1672,7 @@ class IptablesFirewallEnhancedIpsetTestCase(BaseIptablesFirewallTestCase):
|
||||
rules = self.firewall._expand_sg_rule_with_remote_ips(
|
||||
rule, port, 'ingress')
|
||||
self.assertEqual(list(rules),
|
||||
[dict(rule.items() +
|
||||
[dict(list(rule.items()) +
|
||||
[('source_ip_prefix', '%s/32' % ip)])
|
||||
for ip in other_ips])
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user