Author: russellm
Date: 2010-05-10 06:37:45 -0500 (Mon, 10 May 2010)
New Revision: 13196

Modified:
   django/trunk/docs/topics/generic-views.txt
Log:
Fixed #13329 -- Corrected markup problem with URL pattern in generic views 
docs. Thanks to LaundroMat for the report.

Modified: django/trunk/docs/topics/generic-views.txt
===================================================================
--- django/trunk/docs/topics/generic-views.txt  2010-05-10 11:35:43 UTC (rev 
13195)
+++ django/trunk/docs/topics/generic-views.txt  2010-05-10 11:37:45 UTC (rev 
13196)
@@ -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