Opened 17 years ago
Closed 17 years ago
#7242 closed (invalid)
{% load %} tag fails silently if there is a conflict modules with the same name
Description ¶
For example:
app_one/templatetags/foo.py app_two/templatetags/foo.py {% load foo %}
The above fails silently, but it should throw a great big scary error saying that there are two template tag packages with the same name.
Note:
See TracTickets
for help on using tickets.
It doesn't fail, it successfully loads the first library with a matching name. This is no more an error than having two modules of the same name on your pythonpath.