Skip to content

Commit

Permalink
Handle new sanity checks (ansible-collections#416)
Browse files Browse the repository at this point in the history
Update code where it's easy to do so, add ignores where it will take more work
  • Loading branch information
jillr authored Feb 16, 2021
1 parent 248e77f commit f2fd498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ec2_vpc_route_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def index_of_matching_route(route_spec, routes_to_match):

def ensure_routes(connection=None, module=None, route_table=None, route_specs=None,
propagating_vgw_ids=None, check_mode=None, purge_routes=None):
routes_to_match = [route for route in route_table['Routes']]
routes_to_match = list(route_table['Routes'])
route_specs_to_create = []
route_specs_to_recreate = []
for route_spec in route_specs:
Expand Down

0 comments on commit f2fd498

Please sign in to comment.