﻿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
9711	startproject urls.py out of date	chaynes	nobody	"Django version 1.1 pre-alpha SVN-9532
django-admin.py startproject creates a urls.py with the old line

{{{    (r'^admin/', include('django.contrib.admin.urls')), }}}

instead of the newly required:

{{{
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    (r'^admin/(.*)', admin.site.root),
}}}

"		closed	contrib.admin	dev		worksforme			Unreviewed	0	0	0	0	0	0
