summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2012-09-07 09:43:05 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2012-09-07 09:43:05 -0700
commit4321ee25c5c490b94fa0c6e2da5e0b3df215ff81 (patch)
tree53ed791c921e10397f9efa2027ba844c8e986e54 /docs
parente1a37d55374a399dee9c302419fbe9badd92abb0 (diff)
parent07b3d39d101ff0465a5084266745b3db143552e9 (diff)
Merge pull request #336 from dlo/tickets/18915
remove unused import in decoupling URLs tutorial, closes #18915
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'),