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
This commit is contained in:
Aymeric Augustin 2012-01-02 11:19:06 +00:00
parent 9cce7a5ea8
commit 8af9084495
1 changed files with 1 additions and 1 deletions

View File

@ -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