﻿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
27139	ImportError: No module named 'polls.apps.PollsConfig'	Pierre Jimenez	nobody	"In tutorial 02, Writing your first Django app, part 2, typing in 


{{{
INSTALLED_APPS = [
    'polls.apps.PollsConfig',
   ....
}}}


will cause an ImportError: No module named 'polls.apps.PollsConfig'; 'polls.apps' is not a package

This is resolved by instead putting


{{{
INSTALLED_APPS = [
    'polls',
   ....
}}}


"	Uncategorized	closed	Documentation	1.10	Normal	worksforme	apps		Unreviewed	0	0	0	0	1	0
