From 59c49ca34f911da15b9385743b7d2a5124247fd5 Mon Sep 17 00:00:00 2001 From: Rasmus Larsen Date: Fri, 26 Jan 2018 14:55:53 +0100 Subject: [PATCH] Fix typo. --- moto/ec2/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/ec2/models.py b/moto/ec2/models.py index 352960fd5..74bc9d166 100755 --- a/moto/ec2/models.py +++ b/moto/ec2/models.py @@ -1709,7 +1709,7 @@ class SecurityGroupIngress(object): group_id = properties.get('GroupId') ip_protocol = properties.get("IpProtocol") cidr_ip = properties.get("CidrIp") - cidr_ipv6 = properties.get("CidrIpv6" + cidr_ipv6 = properties.get("CidrIpv6") from_port = properties.get("FromPort") source_security_group_id = properties.get("SourceSecurityGroupId") source_security_group_name = properties.get("SourceSecurityGroupName")