summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcshanes <cshanes@umich.edu>2014-08-22 14:51:11 -0400
committercshanes <cshanes@umich.edu>2014-08-22 14:51:11 -0400
commitc085bd681c68ec42c3d351b165fe8ffcbcd1d9c5 (patch)
tree715177d184acc70ac7f438a69a1a83b9480e2b06
parent964999ef9cce0a416005248a7eb8ccc9ed6eb2dd (diff)
downloadboto-c085bd681c68ec42c3d351b165fe8ffcbcd1d9c5.tar.gz
Assigning ACL ID to network_acl_id instead of route_table_id
In the endElement method, in NetworkAclAssociation, the networkAclId is getting assigned to the variable self.route_table_id instead of self.network_acl_id. NetworkAclAssociations should not have a route_table_id variable.
-rw-r--r--boto/vpc/networkacl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/vpc/networkacl.py b/boto/vpc/networkacl.py
index d38e0283..9b8b1cdd 100644
--- a/boto/vpc/networkacl.py
+++ b/boto/vpc/networkacl.py
@@ -135,7 +135,7 @@ class NetworkAclAssociation(object):
if name == 'networkAclAssociationId':
self.id = value
elif name == 'networkAclId':
- self.route_table_id = value
+ self.network_acl_id = value
elif name == 'subnetId':
self.subnet_id = value