diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-28 17:39:14 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-28 17:39:14 -0700 |
| commit | 1dcc603efff8229838f27019668d864a0bcbfa59 (patch) | |
| tree | 8c67764f440faeb095143498383ca57ecd4f09be /tests/mail | |
| parent | e79725cdf90e3271626ed66f70b63640d3fcc521 (diff) | |
Fixed several typos in Django
Diffstat (limited to 'tests/mail')
| -rw-r--r-- | tests/mail/custombackend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mail/custombackend.py b/tests/mail/custombackend.py index 6b0e15ad0a..ac631a6e1b 100644 --- a/tests/mail/custombackend.py +++ b/tests/mail/custombackend.py @@ -10,6 +10,6 @@ class EmailBackend(BaseEmailBackend): self.test_outbox = [] def send_messages(self, email_messages): - # Messages are stored in a instance variable for testing. + # Messages are stored in an instance variable for testing. self.test_outbox.extend(email_messages) return len(email_messages) |
