From 9f95d79cee4130c653fef5c6709a73036c661333 Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sun, 5 Feb 2012 15:41:33 +0000 Subject: [PATCH] Fixed #17510 - Typo in docs/topics/class-based-views.txt; thanks andrew and noria. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17457 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/class-based-views.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/class-based-views.txt b/docs/topics/class-based-views.txt index 3812faefd2..d375e8d67b 100644 --- a/docs/topics/class-based-views.txt +++ b/docs/topics/class-based-views.txt @@ -380,7 +380,7 @@ Next, we'll write the ``PublisherBookListView`` view itself:: class PublisherBookListView(ListView): context_object_name = "book_list" - template_name = "books/books_by_publisher.html", + template_name = "books/books_by_publisher.html" def get_queryset(self): publisher = get_object_or_404(Publisher, name__iexact=self.args[0]) @@ -396,7 +396,7 @@ use it in the template:: class PublisherBookListView(ListView): context_object_name = "book_list" - template_name = "books/books_by_publisher.html", + template_name = "books/books_by_publisher.html" def get_queryset(self): self.publisher = get_object_or_404(Publisher, name__iexact=self.args[0])