1
0
mirror of https://github.com/django/django.git synced 2025-10-30 09:06:13 +00:00

[1.7.x] Fixed several typos in Django

Backport of 1dcc603eff from master
This commit is contained in:
Alex Gaynor
2014-05-28 17:39:14 -07:00
committed by Tim Graham
parent d099c03789
commit 3d98941d5c
34 changed files with 40 additions and 40 deletions

View File

@@ -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)