summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2008-05-13 14:38:31 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2008-05-13 14:38:31 +0000
commitf98757509eafe72bc5508f3a56a8b5ba60f39f86 (patch)
treeffd7072dc2db212d436693964d3748ccca01c3fa
parent7c5fe053c6d254714f12bfa88782dcdb1d1b21c0 (diff)
newforms-admin: Fixed #7227 -- Added missing import, thanks marinho.
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7524 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/comments/views/comments.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/comments/views/comments.py b/django/contrib/comments/views/comments.py
index aac489fcce..683f73987a 100644
--- a/django/contrib/comments/views/comments.py
+++ b/django/contrib/comments/views/comments.py
@@ -7,6 +7,7 @@ from django.shortcuts import render_to_response
from django.template import RequestContext
from django.contrib.comments.models import Comment, FreeComment, RATINGS_REQUIRED, RATINGS_OPTIONAL, IS_PUBLIC
from django.contrib.contenttypes.models import ContentType
+from django.contrib.auth import authenticate
from django.contrib.auth.forms import AuthenticationForm
from django.http import HttpResponseRedirect
from django.utils.text import normalize_newlines