diff options
author | Madhusudan.C.S | 2010-07-22 19:54:31 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-07-22 19:54:31 +0530 |
commit | 172ca6a44b7acb10e32b3674a293f6d914b3009f (patch) | |
tree | 9f6f671b6edc5caf58d5939b1126b7b8bd1b4462 | |
parent | 77d94017a25481edd57ebc25a3df54bb28012d66 (diff) | |
download | scipycon-172ca6a44b7acb10e32b3674a293f6d914b3009f.tar.gz scipycon-172ca6a44b7acb10e32b3674a293f6d914b3009f.tar.bz2 scipycon-172ca6a44b7acb10e32b3674a293f6d914b3009f.zip |
Changed the template loader names to be compliant with upcoming Django changes in 1.2.
-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 b8a94ba..5cebae5 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.load_template_source', - 'django.template.loaders.app_directories.load_template_source', + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader', ) TEMPLATE_DIRS = ( |