summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-05-10 11:37:45 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-05-10 11:37:45 +0000
commit95fea01041729bbefd08805a3fb2b861d7065f00 (patch)
tree3836fd8e5f590b477ec8e1b59be5bf10d2e138ec
parentd73eb089f2a776e36790f10e295f76e797c17c97 (diff)
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
-rw-r--r--docs/topics/generic-views.txt2
1 files changed, 1 insertions, 1 deletions
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<author_id>\d+)/$', author_detail),**
+ **(r'^authors/(?P<author_id>\\d+)/$', author_detail),**
)
Then we'd write our wrapper function::