Kaydet (Commit) e78f2f6a authored tarafından Enrico Ehrhardt's avatar Enrico Ehrhardt

remove unused import in tutorial 4 addition to #18915 (closed)

After submitting ticket #18915, I noticed 2 additional occurrences of the issue. 
üst 3a10bcc9
......@@ -218,7 +218,7 @@ Read on for details.
First, open the ``polls/urls.py`` URLconf. It looks like this, according to the
tutorial so far::
from django.conf.urls import patterns, include, url
from django.conf.urls import patterns, url
urlpatterns = patterns('polls.views',
url(r'^$', 'index'),
......@@ -229,7 +229,7 @@ tutorial so far::
Change it like so::
from django.conf.urls import patterns, include, url
from django.conf.urls import patterns, url
from django.views.generic import DetailView, ListView
from polls.models import Poll
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment