diff options
author | Madhusudan.C.S | 2010-07-22 20:17:14 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-07-22 20:17:14 +0530 |
commit | a7dd0ad4b799c5a2aad4704729fbf00ecb20cb1e (patch) | |
tree | 125ef9ab934d8635229104b009258fe87b534ddd /project/settings.py | |
parent | 7ebdffb8910da824bb6e26e0cb970821238d5bd8 (diff) | |
download | scipycon-a7dd0ad4b799c5a2aad4704729fbf00ecb20cb1e.tar.gz scipycon-a7dd0ad4b799c5a2aad4704729fbf00ecb20cb1e.tar.bz2 scipycon-a7dd0ad4b799c5a2aad4704729fbf00ecb20cb1e.zip |
Reverted the template loaders path.
Diffstat (limited to 'project/settings.py')
-rw-r--r-- | project/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project/settings.py b/project/settings.py index 5cebae5..b8a94ba 100644 --- a/project/settings.py +++ b/project/settings.py @@ -56,8 +56,8 @@ MIDDLEWARE_CLASSES = ( ROOT_URLCONF = 'project.urls' TEMPLATE_LOADERS = ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', + 'django.template.loaders.filesystem.load_template_source', + 'django.template.loaders.app_directories.load_template_source', ) TEMPLATE_DIRS = ( |