summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2008-06-17 13:37:31 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2008-06-17 13:37:31 +0000
commitc6f277f9726ecd5e1dc8b3e19aececa44cad853f (patch)
tree568b902c78e64263940f55504702154bb4f3f587 /docs
parentb3653db4f0dd7eb3d786853e940178bc6d04114f (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/settings.txt5
1 files changed, 4 insertions, 1 deletions
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`_.