diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-02-02 15:00:34 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-02-02 15:00:34 +0000 |
| commit | aae4f9701cca4ec73895c128a323d38c7e52bdad (patch) | |
| tree | f219f4cdb65472162de1b837cedb041662263fd6 /django | |
| parent | fa80e70e13edca4e6a9c3203ab1ce2266365b2b6 (diff) | |
Removed use of deprecated template_loader from [2230]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@2233 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/comments/templatetags/comments.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/django/contrib/comments/templatetags/comments.py b/django/contrib/comments/templatetags/comments.py index 9c829bb761..d71565321f 100644 --- a/django/contrib/comments/templatetags/comments.py +++ b/django/contrib/comments/templatetags/comments.py @@ -1,6 +1,7 @@ "Custom template tags for user comments" -from django.core import template, template_loader +from django.core import template +from django.core.template import loader from django.core.exceptions import ObjectDoesNotExist from django.models.comments import comments, freecomments from django.models.core import contenttypes @@ -56,14 +57,14 @@ class CommentFormNode(template.Node): context['options'] = ','.join(options) if self.free: context['hash'] = comments.get_security_hash(context['options'], '', '', context['target']) - default_form = template_loader.get_template(FREE_COMMENT_FORM) + default_form = loader.get_template(FREE_COMMENT_FORM) else: context['photo_options'] = self.photo_options context['rating_options'] = normalize_newlines(base64.encodestring(self.rating_options).strip()) if self.rating_options: context['rating_range'], context['rating_choices'] = comments.get_rating_options(self.rating_options) context['hash'] = comments.get_security_hash(context['options'], context['photo_options'], context['rating_options'], context['target']) - default_form = template_loader.get_template(COMMENT_FORM) + default_form = loader.get_template(COMMENT_FORM) output = default_form.render(context) context.pop() return output |
