Exception Value: | Error importing template source loader django.template.loaders.filesystem.load_template_source: "'module' object has no attribute 'load_template_source'" |
---|---|
Exception Location: | /usr/lib/python2.7/dist-packages/django/template/loader.py in find_template_loader, line 101 It is normal ? or I must configure something else ? after bash post_install.sh I don't get an error |
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.load_template_source',
'django.template.loaders.app_directories.load_template_source',
'django.template.loaders.eggs.load_template_source',
)
and replace it with:
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.Loader',
'django.template.loaders.app_directories.Loader',
'django.template.loaders.eggs.Loader',
)
I think it should work now.
Aco
It looks like you're new here. If you want to get involved, click one of these buttons!