Changes between Initial Version and Version 1 of Ticket #5243
- Timestamp:
- Aug 25, 2007, 1:30:10 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5243 – Description
initial v1 3 3 Applying the below patch seems to work. I don't know why {{{taglib.split('.')[-1])}}} was done in the first place? It's been like this for as far back as I could trace the revisions in on this Trac. A related ticket might be #372. 4 4 5 {{{ 5 6 Index: django/template/defaulttags.py 6 7 =================================================================== … … 16 17 except InvalidTemplateLibrary, e: 17 18 raise TemplateSyntaxError, "'%s' is not a valid tag library: %s" % (taglib, e) 19 }}}