summaryrefslogtreecommitdiff
path: root/docs/tutorial02.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-10-23 07:55:16 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2006-10-23 07:55:16 +0000
commitc60853e2880c2344d4b61ecb8240264160f01784 (patch)
treee17dcb7847040ab09d8dd4e81826effdf3994bbd /docs/tutorial02.txt
parent28ff6ecbda950f774adb5c10e444db935c70646f (diff)
Fixed #2854 -- Incorporated a small suggestion which might make it clearer where
TEMPLATE_DIRS could point. Thanks, bonovoxmofo@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial02.txt')
-rw-r--r--docs/tutorial02.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt
index bc1717e67c..06cde251e5 100644
--- a/docs/tutorial02.txt
+++ b/docs/tutorial02.txt
@@ -377,7 +377,7 @@ By default, ``TEMPLATE_DIRS`` is empty. So, let's add a line to it, to tell
Django where our templates live::
TEMPLATE_DIRS = (
- "/home/mytemplates", # Change this to your own directory.
+ "/home/my_username/mytemplates", # Change this to your own directory.
)
Now copy the template ``admin/base_site.html`` from within the default Django