diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-03-21 13:45:15 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-03-21 13:45:15 +0000 |
| commit | e923b545a49fecad4451772a7670eb44cf6585cc (patch) | |
| tree | a7c7384c2c65bb7b20d88fa8e8b12f679fdca9b0 | |
| parent | d7e81275242a8439768367059701baa00a9be996 (diff) | |
Fixed #9303 (again) by removing some code missing in [9891].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10109 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/comments/templatetags/comments.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/contrib/comments/templatetags/comments.py b/django/contrib/comments/templatetags/comments.py index 9b12adaf6d..9f8180ab08 100644 --- a/django/contrib/comments/templatetags/comments.py +++ b/django/contrib/comments/templatetags/comments.py @@ -3,7 +3,6 @@ from django.template.loader import render_to_string from django.conf import settings from django.contrib.contenttypes.models import ContentType from django.contrib import comments -from django.db.models import FieldDoesNotExist from django.utils.encoding import smart_unicode register = template.Library() @@ -81,7 +80,6 @@ class BaseCommentNode(template.Node): content_type = ctype, object_pk = smart_unicode(object_pk), site__pk = settings.SITE_ID, - is_public = True, ) # The is_public and is_removed fields are implementation details of the |
