﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26525	Tutorial02 document issue	edwardspbe	nobody	"I believe there is an issue with [https://docs.djangoproject.com/en/1.9/intro/tutorial02/#activating-models Writing your first Django app, part 2].  The directions for adding ''polls'' is incorrect.

{{{

Edit the mysite/settings.py file again, and change the INSTALLED_APPS setting to include the string polls.apps.PollsConfig. It’ll look like this:

mysite/settings.py
INSTALLED_APPS = [
    'polls.apps.PollsConfig',
}}}


This should read;

{{{

Edit the mysite/settings.py file again, and change the INSTALLED_APPS setting to include the string polls. It’ll look like this:

mysite/settings.py
INSTALLED_APPS = [
    'polls',
}}}

If not, the following instructions to execute;  

{{{
 python manage.py makemigrations polls
}}}
will fail with the error

{{{
ImportError: No module named apps
}}}"	Uncategorized	closed	Documentation	1.9	Normal	worksforme			Unreviewed	0	0	0	0	1	0
