Commit 9eb7d596 authored by Tim Graham's avatar Tim Graham
Browse files

[1.4.x] Fixed #19815 - Removed an unused import in tutorial 3.

Thanks pedro.calcao@ for the report.
parent dec7dd99
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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'),