1
0
mirror of https://github.com/django/django.git synced 2025-03-14 03:10:45 +00:00

Merge pull request #336 from dlo/tickets/18915

remove unused import in decoupling URLs tutorial, closes #18915
This commit is contained in:
Alex Gaynor 2012-09-07 09:43:05 -07:00
commit 4321ee25c5

View File

@ -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'),