summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-25 02:02:58 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-25 02:02:58 +0000
commitd310b108f451d3203b69956953e4c0f2eb55c291 (patch)
tree31490b65f520ba6e8ea47f3663401c6be9c3d24c
parent3ad82eff77ed2d30d74413a7b7cff006bbd8beb2 (diff)
Changed global_settings.TEMPLATE_LOADERS to be same as default project_template.settings.TEMPLATE_LOADERS
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1011 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/conf/global_settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py
index 52acb51de4..40e230b04c 100644
--- a/django/conf/global_settings.py
+++ b/django/conf/global_settings.py
@@ -65,8 +65,8 @@ TEMPLATE_FILE_EXTENSION = '.html'
# See the comments in django/core/template/loader.py for interface
# documentation.
TEMPLATE_LOADERS = (
-# 'django.core.template.loaders.app_directories.load_template_source',
'django.core.template.loaders.filesystem.load_template_source',
+ 'django.core.template.loaders.app_directories.load_template_source',
# 'django.core.template.loaders.eggs.load_template_source',
)