﻿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
20277	polls/urls.py error	henry.monma@…	nobody	"There is a error in the Tutorial when configuring polls/urls.py
https://docs.djangoproject.com/en/1.5/intro/tutorial03/

It is written:
url(r'^(?P<poll_id>\d+)/$', views.detail, name='detail'),
url(r'^(?P<poll_id>\d+)/results/$', views.results, name='results'),
url(r'^(?P<poll_id>\d+)/vote/$', views.vote, name='vote'),

When it should be:

url(r'^/(?P<poll_id>\d+)/$', views.detail, name='detail'),
url(r'^/(?P<poll_id>\d+)/results/$', views.results, name='results'),
url(r'^/(?P<poll_id>\d+)/vote/$', views.vote, name='vote'),

Put the slash ...^/(?..."	Bug	closed	Documentation	1.5	Normal	invalid	tutorial, configuration, url		Unreviewed	0	0	0	0	0	0
