summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDan Loewenherz <dloewenherz@gmail.com>2012-09-07 11:46:53 -0400
committerDan Loewenherz <dloewenherz@gmail.com>2012-09-07 11:49:55 -0400
commit07b3d39d101ff0465a5084266745b3db143552e9 (patch)
treea1c8d7f053da82a238d43824fa6fc45595e6e1b1 /docs
parent39aa8901e11f07627958ad624146bffe0e1d05a3 (diff)
remove unused import in decoupling URLs tutorial, closes #18915
The `include` function isn't used in polls/urls.py.
Diffstat (limited to 'docs')
-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 6d4fb7eef1..2430bc3a2d 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -517,7 +517,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'),