﻿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
28537	Urlpatterns don't work.	lao zzzi	nobody	"mysite.urls
{{{
from django.conf.urls import include, url
from django.contrib import admin

urlpatterns = [
    url(r'^polls/', include('polls.urls')),
    url(r'^admin/', admin.site.urls),
]
}}}

when I run http://localhost:8000/polls/ it shows error 404 with description 
""Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order:
^admin/
The current path, polls/, didn't match any of these.""

So, it doesn't check the first pattern like it wasn't consist. What have I done wrong?"	Bug	new	Core (URLs)	1.11	Normal		urlpatterns		Unreviewed	0	0	0	0	0	0
