summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Bauer <gb@hugo.westfalen.de>2005-11-25 00:20:13 +0000
committerGeorg Bauer <gb@hugo.westfalen.de>2005-11-25 00:20:13 +0000
commit84eb80bbd79af35293797fd77766513b28c8a7da (patch)
tree3297c6b3f777a8a827a822ece49883c569d41f42
parentca683d8ca54b7579eefba8ef52ccd35b04a66b63 (diff)
and another little fix to the email sending stuff on password_reset - using Context works much better after importing it
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1409 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/views/registration/passwords.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/registration/passwords.py b/django/views/registration/passwords.py
index 0dde5f7b6d..65bacafd98 100644
--- a/django/views/registration/passwords.py
+++ b/django/views/registration/passwords.py
@@ -1,6 +1,6 @@
from django.core import formfields, validators
from django.core.extensions import DjangoContext, render_to_response
-from django.core.template import loader
+from django.core.template import Context, loader
from django.models.auth import users
from django.views.decorators.auth import login_required
from django.utils.httpwrappers import HttpResponseRedirect