inactivist / django-endless-pagination

Clone of the v1.1 branch of the Google Code django-endless-pagination repo. https://code.google.com/p/django-endless-pagination/
MIT License
4 stars 2 forks source link

Syncdb failure #2

Open keithio opened 12 years ago

keithio commented 12 years ago

When doing an initial sync for the database with endless_pagination in INSTALLED_APPS, the following error halts the execution (on Django 1.4):

django.core.exceptions.ImproperlyConfigured: Error importing template source loader django.template.loaders.app_directories.Loader: "'module' object has no attribute 'Loader'"

The template loaders in settings.py look as follows:

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
    #'django.template.loaders.eggs.Loader',
)