summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial03.txt
diff options
context:
space:
mode:
authorJulien Phalip <jphalip@gmail.com>2011-11-12 13:30:05 +0000
committerJulien Phalip <jphalip@gmail.com>2011-11-12 13:30:05 +0000
commit726f082aa95791dca4fa17dc76dbf8a392c0b1ab (patch)
treea54355628f7defcdaa00f5c5a2481f38b3a37316 /docs/intro/tutorial03.txt
parentc3df840c20cc17ceb8fdcafb4215a6f3fb87fed1 (diff)
Fixed #17206 -- Fixed an outdated error message in the tutorial part 3. Thanks, rabio.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17082 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro/tutorial03.txt')
-rw-r--r--docs/intro/tutorial03.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 59c7afae67..7d006667c0 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -147,8 +147,7 @@ You should get a pleasantly-colored error page with the following message::
ViewDoesNotExist at /polls/
- Tried index in module polls.views. Error was: 'module'
- object has no attribute 'index'
+ Could not import polls.views.index. View does not exist in module polls.views.
This error happened because you haven't written a function ``index()`` in the
module ``polls/views.py``.