Removed leftover from the module system.

This commit is contained in:
Armin Ronacher 2014-09-03 14:58:32 +02:00
parent 9eb59b0bef
commit ed49fe3db1

View file

@ -67,14 +67,6 @@ class DispatchingJinjaLoader(BaseLoader):
if loader is not None:
yield loader, template
# old style module based loaders in case we are dealing with a
# blueprint that is an old style module
try:
module, local_name = posixpath.normpath(template).split('/', 1)
blueprint = self.app.blueprints[module]
except (ValueError, KeyError):
pass
for blueprint in itervalues(self.app.blueprints):
loader = blueprint.jinja_loader
if loader is not None: