From d310b108f451d3203b69956953e4c0f2eb55c291 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 25 Oct 2005 02:02:58 +0000 Subject: [PATCH] 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 --- django/conf/global_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', )