On Tue, Jul 20, 2010 at 9:57 AM, Tereno <[email protected]> wrote: > I'm experiencing this error: Module > "django.template.loaders.filesystem" does not define a "Loader" > callable template source loader > > and I can't figure out why at all. I've placed my templates dir in the > settings file and yet somehow it doesn't like it at all. Can anyone > help me? I'm running Google App Engine with Django. >
Did you define your TEMPLATE_DIRS like this : import os ROOT_PATH = os.path.dirname(__file__) TEMPLATE_DIRS = (ROOT_PATH + '/templates',) -V -- You received this message because you are subscribed to the Google Groups "Django users" 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/django-users?hl=en.

