From 4cd24bb67c8d82630817e97ab9ba444ca955a94d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 14 Dec 2015 08:56:30 -0500 Subject: [PATCH] Fixed #25934 -- Added missing app_name in tutorial 4's urls.py. --- docs/intro/tutorial04.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt index 909a87381c..7c544b7436 100644 --- a/docs/intro/tutorial04.txt +++ b/docs/intro/tutorial04.txt @@ -241,6 +241,7 @@ First, open the ``polls/urls.py`` URLconf and change it like so: from . import views + app_name = 'polls' urlpatterns = [ url(r'^$', views.IndexView.as_view(), name='index'), url(r'^(?P[0-9]+)/$', views.DetailView.as_view(), name='detail'),