Commit 52032b80 by James Tanner

Fix pep8 error in ec2_vpc

parent b777bb36
...@@ -339,7 +339,7 @@ def create_vpc(module, vpc_conn): ...@@ -339,7 +339,7 @@ def create_vpc(module, vpc_conn):
# Associate with subnets # Associate with subnets
for sn in rt['subnets']: for sn in rt['subnets']:
rsn = vpc_conn.get_all_subnets(filters={'cidr': sn }) rsn = vpc_conn.get_all_subnets(filters={'cidr': sn})
if len(rsn) != 1: if len(rsn) != 1:
module.fail_json( module.fail_json(
msg='The subnet {0} to associate with route_table {1} ' \ msg='The subnet {0} to associate with route_table {1} ' \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment