> > I can make it work by commenting lines from 20 thru 27, and always load > templates using FileSystemLoader I don't really need a patch to get it > work, I was just wondering how these things happen. I can even wait for > your patch to be merged into the trunk or whatever change that makes it > work without hacking TG 2.1.5. >
You can also disable dotted names, in you app_cfg.py set: base_config.use_dotted_templatenames = False This will tell the jinja code to use FileSytemLoader directly, thus the jinja_lookup.py code will not be hit, that should revert the jinja loader behavior to work the same as 2.1.4, dotted names are not enabled by default with jinja because it is enabled by default on all other backends (for sake of homogeneity). Regards, Carlos Ruvalcaba -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.

