From 45c409f3fd488c59077dbb0acc0fea121b048579 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Mon, 10 May 2010 11:43:34 +0000 Subject: [PATCH] [1.1.X] Fixed #13329 -- Corrected markup problem with URL pattern in generic views docs. Thanks to LaundroMat for the report. Backport of r13196 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@13199 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 c48c858f0b..c909774d0b 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::