Commit d86870cb authored by Mahendra Yadav's avatar Mahendra Yadav Committed by Tim Graham
Browse files

[1.9.x] Added a missing import in tutorial 3.

Backport of e8c34bb8 from master
parent 237f72c9
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -450,6 +450,8 @@ file, go ahead and add an ``app_name`` to set the application namespace:

    from django.conf.urls import url

    from . import views

    app_name = 'polls'
    urlpatterns = [
        url(r'^$', views.index, name='index'),