Commit 7f84dac3 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

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
parent 58af951c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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<poll_id>\d+)/vote/$', 'polls.views.vote'),
    )