Skip to content

Commit

Permalink
fixed typos in README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
kamykaze committed Jul 24, 2012
1 parent 9f27d05 commit e9382ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ To allow emails to be sent to any emails for theclient.com, use the following::
You can also add your own company's domain so developers will receive emails:: You can also add your own company's domain so developers will receive emails::


BANDIT_WHITELIST_EMAILS = [ BANDIT_WHITELIST_EMAILS = [
r'.*\@(theclient\.com', r'.*\@theclient\.com',
r'.*\@(mycompany\.com', r'.*\@mycompany\.com',
] ]


although it's more efficient to use one regular expression for that:: although it's more efficient to use one regular expression for that::


BANDIT_WHITELIST_EMAILS = [ BANDIT_WHITELIST_EMAILS = [
r'.*\@(theclient\.com|mycompany\.com', r'.*\@(theclient\.com|mycompany\.com)',
] ]


Hijacking Arbitrary Backends Hijacking Arbitrary Backends
Expand Down

0 comments on commit e9382ac

Please sign in to comment.