Skip to content

Commit

Permalink
Fixed #13329 -- Corrected markup problem with URL pattern in generic …
Browse files Browse the repository at this point in the history
…views docs. Thanks to LaundroMat for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13196 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed May 10, 2010
1 parent d73eb08 commit 95fea01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/generic-views.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down

0 comments on commit 95fea01

Please sign in to comment.