Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
pep8 fix to relace lambda function
Browse files Browse the repository at this point in the history
  • Loading branch information
Niall Creech committed Feb 14, 2017
1 parent c91f131 commit b1db6fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap_cfn/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ def _get_manual_ssl_certificate(self, certificate_name):

@classmethod
def _find_resources(cls, template, resource_type):
f = lambda x: x.resource_type == resource_type
def f(x): return (x.resource_type == resource_type)
return filter(f, template.resources.values())

@classmethod
Expand Down
2 changes: 2 additions & 0 deletions docs/ses_acm_validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ with default 3 day deletion policy. We need to setup SES on the domain we want t
receive mail on since it doesnt have cloudformation support, but luckily this is
straightforward.

> Note, SES may bounce emails when sending to meta-email addresses such as for groups. See `the SES FAQ <http://docs.aws.amazon.com/ses/latest/DeveloperGuide/e-faq-bn.html>`_ for more details.
Setup SES on the mail domain
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit b1db6fc

Please sign in to comment.