summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial01.txt
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-01-02 11:19:06 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-01-02 11:19:06 +0000
commit8af9084495deb74fb3b34b8690daac6774d03109 (patch)
tree201a1c8fe187a0e956d299f09a35311afd610437 /docs/intro/tutorial01.txt
parent9cce7a5ea8e3006069041e6a6bf7294f7e643396 (diff)
Fixed #17490 -- Added a trailing comma in INSTALLED_APPS, to avoid unexpected string concatenation when adding another app.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17324 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial01.txt')
-rw-r--r--docs/intro/tutorial01.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index 659e5ed055..406259e132 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -414,7 +414,7 @@ it'll look like this::
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
- 'polls'
+ 'polls',
)
Now Django knows to include the ``polls`` app. Let's run another