Skip to content

Commit

Permalink
Fixed a typo bug in get_all_subnets method's contruction of params. S…
Browse files Browse the repository at this point in the history
…ee github issue boto#6.
  • Loading branch information
Mitch Garnaat committed Jan 20, 2011
1 parent 768950c commit 6edb076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boto/vpc/__init__.py
Expand Up @@ -287,7 +287,7 @@ def get_all_subnets(self, subnet_ids=None, filters=None):
i = 1
for filter in filters:
params[('Filter.%d.Key' % i)] = filter[0]
params[('Filter.%d.Value.1')] = filter[1]
params[('Filter.%d.Value.1' % i)] = filter[1]
i += 1
return self.get_list('DescribeSubnets', params, [('item', Subnet)])

Expand Down

0 comments on commit 6edb076

Please sign in to comment.