From 8af9084495deb74fb3b34b8690daac6774d03109 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Mon, 2 Jan 2012 11:19:06 +0000 Subject: [PATCH] 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 --- docs/intro/tutorial01.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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