From c6f277f9726ecd5e1dc8b3e19aececa44cad853f Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 17 Jun 2008 13:37:31 +0000 Subject: [PATCH] Fixed #7174 -- Corrected the default setting for TEMPLATE_LOADERS described in the settings docs. Thanks, pbx. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7676 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/settings.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/settings.txt b/docs/settings.txt index 02e458fcda..a1c8c749dd 100644 --- a/docs/settings.txt +++ b/docs/settings.txt @@ -958,7 +958,10 @@ See the `template documentation`_. TEMPLATE_LOADERS ---------------- -Default: ``('django.template.loaders.filesystem.load_template_source',)`` +Default:: + + ('django.template.loaders.filesystem.load_template_source', + 'django.template.loaders.app_directories.load_template_source') A tuple of callables (as strings) that know how to import templates from various sources. See the `template documentation`_.