Browse Source

Added a missing import in tutorial 3.

Mahendra Yadav 9 years ago
parent
commit
e8c34bb832
1 changed files with 2 additions and 0 deletions
  1. 2 0
      docs/intro/tutorial03.txt

+ 2 - 0
docs/intro/tutorial03.txt

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