﻿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
3981	naming-url-patterns	django-tix@…	Jacob	"http://www.djangoproject.com/documentation/url_dispatch/#naming-url-patterns

{{{
urlpatterns = patterns('',
    url(r'/archive/(\d{4})/$', archive, name=""full-archive""),
    url(r'/archive-summary/(\d{4})/$', archive, {'summary': True}, ""arch-summary""),
)
}}}

should be
{{{
urlpatterns = patterns('',
    url(r'/archive/(\d{4})/$', archive, name=""full-archive""),
    url(r'/archive-summary/(\d{4})/$', archive, {'summary': True}, name=""arch-summary""),
)
}}}"		closed	Documentation	dev		invalid			Unreviewed	0	0	0	0	0	0
