Skip to content

Commit

Permalink
remove unused import in decoupling URLs tutorial, closes #18915
Browse files Browse the repository at this point in the history
The `include` function isn't used in polls/urls.py.
  • Loading branch information
dlo committed Sep 7, 2012
1 parent 39aa890 commit 07b3d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/intro/tutorial03.txt
Expand Up @@ -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'),
Expand Down

0 comments on commit 07b3d39

Please sign in to comment.