From 9eb7d59665972690bea790fd1ed12eeb142c0ee4 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 12 Feb 2013 20:04:15 -0500 Subject: [PATCH] [1.4.x] Fixed #19815 - Removed an unused import in tutorial 3. Thanks pedro.calcao@ for the report. --- docs/intro/tutorial03.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 5ed927a9df..4a0c900137 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -516,7 +516,7 @@ URLconf by removing the leading "polls/" from each line, and removing the lines registering the admin site. Your ``polls/urls.py`` file should now look like this:: - from django.conf.urls import patterns, include, url + from django.conf.urls import patterns, url urlpatterns = patterns('polls.views', url(r'^$', 'index'),