﻿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
13329	Error in documentation	Mathieu	Gabriel Hurley	"The code mentioned at http://docs.djangoproject.com/en/dev/topics/generic-views/#performing-extra-work 

{{{
from mysite.books.views import author_detail

urlpatterns = patterns('',
    #...
    (r'^authors/(?P<author_id>d+)/$', author_detail),
)
}}}

is missing a ""\"" after the named group, and should be:

{{{
from mysite.books.views import author_detail

urlpatterns = patterns('',
    #...
    (r'^authors/(?P<author_id>\d+)/$', author_detail),
)
}}}
"		closed	Documentation	dev		fixed			Ready for checkin	1	0	0	0	0	0
