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
|
:filename: mysite/settings.py
|
||||||
|
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
|
'polls',
|
||||||
'django.contrib.admin',
|
'django.contrib.admin',
|
||||||
'django.contrib.auth',
|
'django.contrib.auth',
|
||||||
'django.contrib.contenttypes',
|
'django.contrib.contenttypes',
|
||||||
'django.contrib.sessions',
|
'django.contrib.sessions',
|
||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
'polls',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
Now Django knows to include the ``polls`` app. Let's run another command:
|
Now Django knows to include the ``polls`` app. Let's run another command:
|
||||||
|
|
Loading…
Reference in New Issue