#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
Note:
See TracTickets
for help on using tickets.
Fixed in [2272]