Fixed #12147 -- Replaced use of try-except-finally to allow for Python 2.4 support. Thanks to knutin for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11721 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
dd5d7622a5
commit
90a9f81d37
|
@ -17,6 +17,9 @@ class EmailBackend(BaseEmailBackend):
|
||||||
if not email_messages:
|
if not email_messages:
|
||||||
return
|
return
|
||||||
self._lock.acquire()
|
self._lock.acquire()
|
||||||
|
try:
|
||||||
|
# The try-except is nested to allow for
|
||||||
|
# Python 2.4 support (Refs #12147)
|
||||||
try:
|
try:
|
||||||
stream_created = self.open()
|
stream_created = self.open()
|
||||||
for message in email_messages:
|
for message in email_messages:
|
||||||
|
|
Loading…
Reference in New Issue