From 7f84dac3c7cdbbd073a6b8cdb07033dd4a53608e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 21 Oct 2010 06:01:02 +0000 Subject: [PATCH] Fixed #14519 -- corrected a type in the tutorial, thanks buriy for the report and fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14308 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/intro/tutorial04.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt index aac8b30cd1..95d1945097 100644 --- a/docs/intro/tutorial04.txt +++ b/docs/intro/tutorial04.txt @@ -249,7 +249,7 @@ Change it like so:: DetailView.as_view( models=Poll, template_name='polls/results.html'), - 'poll_results'), + name='poll_results'), (r'^(?P\d+)/vote/$', 'polls.views.vote'), )