Author: jtauber
Date: Wed Jan 21 03:57:37 2009
New Revision: 152
Modified:
trunk/notification/models.py
Log:
fixed missing colon
Modified: trunk/notification/models.py
==============================================================================
--- trunk/notification/models.py (original)
+++ trunk/notification/models.py Wed Jan 21 03:57:37 2009
@@ -25,8 +25,8 @@
from django.utils.translation import ugettext, get_language, activate
# favour django-mailer but fall back to django.core.mail
-if 'mailer' in settings.INSTALLED_APPS
- from mailer import send_mail:
+if 'mailer' in settings.INSTALLED_APPS:
+ from mailer import send_mail
else:
from django.core.mail import send_mail
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---