diff options
| author | Tim Graham <timograham@gmail.com> | 2015-09-07 09:28:15 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-07 15:23:11 -0400 |
| commit | 862de0b254bbb0ec75d637c7fbff258ecf232786 (patch) | |
| tree | ddf3995ad0bfacbb19b193f06e25a98b5ac780fb /docs/intro/tutorial02.txt | |
| parent | 29d52583e77b247aceeb2f514177a8a6c21ed786 (diff) | |
Fixed #25356 -- Removed default_app_config from startapp template.
Also discouraged its use outside the intended use case.
Diffstat (limited to 'docs/intro/tutorial02.txt')
| -rw-r--r-- | docs/intro/tutorial02.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 0774b2a54e..402b9213aa 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -199,14 +199,14 @@ But first we need to tell our project that the ``polls`` app is installed. Django installation. Edit the :file:`mysite/settings.py` file again, and change the -:setting:`INSTALLED_APPS` setting to include the string ``'polls'``. So it'll -look like this: +:setting:`INSTALLED_APPS` setting to include the string +``'polls.apps.PollsConfig'``. It'll look like this: .. snippet:: :filename: mysite/settings.py INSTALLED_APPS = [ - 'polls', + 'polls.apps.PollsConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', |
