summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-02-12 20:04:15 -0500
committerTim Graham <timograham@gmail.com>2013-02-12 20:04:15 -0500
commit9eb7d59665972690bea790fd1ed12eeb142c0ee4 (patch)
tree0f1f44e1107a196b0a4d94781505c92da8894f16
parentdec7dd99f095f938bc4306a0260d5b131935ad82 (diff)
[1.4.x] Fixed #19815 - Removed an unused import in tutorial 3.
Thanks pedro.calcao@ for the report.
-rw-r--r--docs/intro/tutorial03.txt2
1 files changed, 1 insertions, 1 deletions
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'),