From e075d2e66baae98c5b5c06bff384665ab50e0223 Mon Sep 17 00:00:00 2001 From: Collin Anderson Date: Fri, 1 Aug 2014 21:32:53 -0400 Subject: Fixed #23148 -- Minor tweaks in tutorial code samples --- docs/intro/tutorial03.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/intro/tutorial03.txt') diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index c3ab1870c9..54cc019150 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -97,7 +97,7 @@ In the ``polls/urls.py`` file include the following code: from polls import views urlpatterns = [ - url(r'^$', views.index, name='index') + url(r'^$', views.index, name='index'), ] The next step is to point the root URLconf at the ``polls.urls`` module. In @@ -466,7 +466,7 @@ provides a shortcut. Here's the ``detail()`` view, rewritten: .. snippet:: :filename: polls/views.py - from django.shortcuts import render, get_object_or_404 + from django.shortcuts import get_object_or_404, render from polls.models import Question # ... -- cgit v1.3