Fixed #16910 -- Misleading regex in urlpatterns inclusion docs.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16893 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Paul McMillan 2011-09-22 23:03:53 +00:00
parent 1631e13d61
commit 642620897d
1 changed files with 2 additions and 2 deletions

View File

@ -465,8 +465,8 @@ directly the pattern list as returned by `patterns`_ instead. For example::
from django.conf.urls import patterns, url, include
extra_patterns = patterns('',
url(r'reports/(?P<id>\d+)/$', 'credit.views.report', name='credit-reports'),
url(r'charge/$', 'credit.views.charge', name='credit-charge'),
url(r'^reports/(?P<id>\d+)/$', 'credit.views.report', name='credit-reports'),
url(r'^charge/$', 'credit.views.charge', name='credit-charge'),
)
urlpatterns = patterns('',