From 95fea01041729bbefd08805a3fb2b861d7065f00 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 10 May 2010 11:37:45 +0000 Subject: [PATCH] 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 --- docs/topics/generic-views.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/generic-views.txt b/docs/topics/generic-views.txt index aaaae90485..f70bb43f38 100644 --- a/docs/topics/generic-views.txt +++ b/docs/topics/generic-views.txt @@ -453,7 +453,7 @@ custom view: urlpatterns = patterns('', #... - **(r'^authors/(?P\d+)/$', author_detail),** + **(r'^authors/(?P\\d+)/$', author_detail),** ) Then we'd write our wrapper function::