mirror of https://github.com/django/django.git
Fixed #25153 -- Moved 'polls' first in tutorial's INSTALLED_APPS.
This commit is contained in:
parent
c1893e2839
commit
bda408f60b
|
@ -206,13 +206,13 @@ look like this:
|
|||
:filename: mysite/settings.py
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'polls',
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
'polls',
|
||||
]
|
||||
|
||||
Now Django knows to include the ``polls`` app. Let's run another command:
|
||||
|
|
Loading…
Reference in New Issue