diff options
| author | Tim Graham <timograham@gmail.com> | 2015-08-19 18:59:42 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-08-19 18:59:42 -0400 |
| commit | bda408f60bf901620e88d25aad38210985e5c758 (patch) | |
| tree | 9ccf4362daf2f4662f937be6a31a7f25a5ed8e76 /docs/intro/tutorial02.txt | |
| parent | c1893e2839245e75b35597a9200d9ef9c1ad9b46 (diff) | |
Fixed #25153 -- Moved 'polls' first in tutorial's INSTALLED_APPS.
Diffstat (limited to 'docs/intro/tutorial02.txt')
| -rw-r--r-- | docs/intro/tutorial02.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 049d33c1f1..0774b2a54e 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -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: |
