From 5ce16c7e2791472bf3fac9ae969a85ec32045490 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 10 Jan 2010 18:38:00 +0000 Subject: [PATCH] Fixed #12161 -- Added escaping of a backslash in two generic-views.txt examples. Thanks, infopams git-svn-id: http://code.djangoproject.com/svn/django/trunk@12182 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/generic-views.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/generic-views.txt b/docs/topics/generic-views.txt index c48c858f0b..aaaae90485 100644 --- a/docs/topics/generic-views.txt +++ b/docs/topics/generic-views.txt @@ -80,7 +80,7 @@ the URLconf to point to a view function: ('^about/$', direct_to_template, { 'template': 'about.html' }), - **('^about/(\w+)/$', about_pages),** + **('^about/(\\w+)/$', about_pages),** ) Next, we'll write the ``about_pages`` view:: @@ -382,7 +382,7 @@ of code by hand. As usual, we'll start by writing a URLconf: urlpatterns = patterns('', (r'^publishers/$', list_detail.object_list, publisher_info), - **(r'^books/(\w+)/$', books_by_publisher),** + **(r'^books/(\\w+)/$', books_by_publisher),** ) Next, we'll write the ``books_by_publisher`` view itself::