Route Tables / Routes: Initial implementation. (Fixed iteritems reference.)
This commit is contained in:
parent
02f1dc0b3e
commit
8e330f43b2
@ -107,7 +107,7 @@ def image_ids_from_querystring(querystring_dict):
|
||||
|
||||
def route_table_ids_from_querystring(querystring_dict):
|
||||
route_table_ids = []
|
||||
for key, value in querystring_dict.iteritems():
|
||||
for key, value in querystring_dict.items():
|
||||
if 'RouteTableId' in key:
|
||||
route_table_ids.append(value[0])
|
||||
return route_table_ids
|
||||
|
Loading…
Reference in New Issue
Block a user