Author: russellm
Date: 2010-05-10 06:43:34 -0500 (Mon, 10 May 2010)
New Revision: 13199

Modified:
   django/branches/releases/1.1.X/docs/topics/generic-views.txt
Log:
[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.

Modified: django/branches/releases/1.1.X/docs/topics/generic-views.txt
===================================================================
--- django/branches/releases/1.1.X/docs/topics/generic-views.txt        
2010-05-10 11:42:41 UTC (rev 13198)
+++ django/branches/releases/1.1.X/docs/topics/generic-views.txt        
2010-05-10 11:43:34 UTC (rev 13199)
@@ -453,7 +453,7 @@
 
     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::

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to