Author: timo Date: 2012-02-05 07:41:33 -0800 (Sun, 05 Feb 2012) New Revision: 17457
Modified: django/trunk/docs/topics/class-based-views.txt Log: Fixed #17510 - Typo in docs/topics/class-based-views.txt; thanks andrew and noria. Modified: django/trunk/docs/topics/class-based-views.txt =================================================================== --- django/trunk/docs/topics/class-based-views.txt 2012-02-05 10:29:08 UTC (rev 17456) +++ django/trunk/docs/topics/class-based-views.txt 2012-02-05 15:41:33 UTC (rev 17457) @@ -380,7 +380,7 @@ 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 @@ 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]) -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com. To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.