﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
15680	templatetags submodules no longer work	EMiller	Julien Phalip	"We're migrating from 1.1 to 1.3 - we have a directory 

{{{
myapp/
    templatetags/
        tagmodule/
            __init__.py
            foo.py
}}}

This worked fine in 1.1 with {% load tagmodule.foo %} in the template. In 1.3 this breaks. In django.template.base.get_library loops through templatetag_modules pairing modules and libraries and calling import_library. On line 951 of base.py:

{{{
app_path, taglib = taglib_module.rsplit('.',1)
app_module = import_module(app_path)
}}}

That rsplit left my ""tagmodule"" in the app_path, which then failed to import as it was paired with another path. 

Reorganizing my templatetags under deadline, just wanted to mention it."		closed	Template system	1.3		wontfix			Accepted	0	0	0	0	0	0
