Skip to content

Commit

Permalink
Merge branch 'sns-param-name' of git://github.com/paperlabs/boto into…
Browse files Browse the repository at this point in the history
… paperlabs-sns-param-name
  • Loading branch information
garnaat committed Jul 27, 2012
2 parents 3770ee1 + 7c6c9f7 commit c400a4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boto/sns/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ def add_permission(self, topic, label, account_ids, actions):
params = {'ContentType' : 'JSON',
'TopicArn' : topic,
'Label' : label}
self.build_list_params(params, account_ids, 'AWSAccountId')
self.build_list_params(params, actions, 'ActionName')
self.build_list_params(params, account_ids, 'AWSAccountId.member')
self.build_list_params(params, actions, 'ActionName.member')
response = self.make_request('AddPermission', params, '/', 'GET')
body = response.read()
if response.status == 200:
Expand Down

0 comments on commit c400a4c

Please sign in to comment.