﻿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
23012	Typo in tutorial regex	django@…	nobody	"I was following the (excellent) tutorial at https://docs.djangoproject.com/en/1.6/intro/tutorial03/ and noticed what I think is a bug in some of the regexs. For exampe:

{{{
# ex: /polls/5/
url(r'^(?P<poll_id>\d+)/$', views.detail, name='detail'),
}}}

The regex matches on <domain.name>/poll_id. However, the comment and subsequent documentation say it should match on <domain.name>/'''polls/'''poll_id. 

I believe the line (and those near it, should be modified as follows:

{{{
url(r'^polls/(?P<poll_id>\d+)/$', views.detail, name='detail'),
}}}"	Bug	closed	Documentation	1.6	Normal	invalid	regex		Unreviewed	1	0	0	0	0	0
