mirror of
https://github.com/django/django.git
synced 2025-11-01 12:25:37 +00:00
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:
parent
9cce7a5ea8
commit
8af9084495
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue