fixed minor py3 compliance issue in ec2_vpn_nacl (#24758)
wrapped a dict.items() with listpull/4420/head
parent
7563d93901
commit
4a718645e8
|
@ -145,8 +145,8 @@ DEFAULT_RULE_FIELDS = {
|
|||
'Protocol': '-1'
|
||||
}
|
||||
|
||||
DEFAULT_INGRESS = dict(DEFAULT_RULE_FIELDS.items() + [('Egress', False)])
|
||||
DEFAULT_EGRESS = dict(DEFAULT_RULE_FIELDS.items() + [('Egress', True)])
|
||||
DEFAULT_INGRESS = dict(list(DEFAULT_RULE_FIELDS.items()) + [('Egress', False)])
|
||||
DEFAULT_EGRESS = dict(list(DEFAULT_RULE_FIELDS.items()) + [('Egress', True)])
|
||||
|
||||
# VPC-supported IANA protocol numbers
|
||||
# http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
|
||||
|
|
Loading…
Reference in New Issue