Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#1523 closed defect (fixed)

contrib.comments's templatetag stil use django.core.template package and can't load

Reported by: mtsuyuki at gmail.com Owned by: Adrian Holovaty
Component: Core (Other) Version: magic-removal
Severity: normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

django/contrib/comments/templatetags/comments.py is stil trying to import django.core.template.loader.

{% load comments %} raise import error.

django/contrib/comments/templatetags/comments.py

  • from django.core.template import loader

+ from django.template import loader

Change History (1)

comment:1 by jkocherhans, 18 years ago

Resolution: fixed
Status: newclosed

Fixed in [2272]

Note: See TracTickets for help on using tickets.
Back to Top