Commit 8af90844 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Fixed #17490 -- Added a trailing comma in INSTALLED_APPS, to avoid unexpected...

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
parent 9cce7a5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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