Fixed #13329 -- Corrected markup problem with URL pattern in generic views docs. Thanks to LaundroMat for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-05-10 11:37:45 +00:00
parent d73eb089f2
commit 95fea01041
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ custom view:
urlpatterns = patterns('', urlpatterns = patterns('',
#... #...
**(r'^authors/(?P<author_id>\d+)/$', author_detail),** **(r'^authors/(?P<author_id>\\d+)/$', author_detail),**
) )
Then we'd write our wrapper function:: Then we'd write our wrapper function::