From 297731c65727cd2844e0fafd6cfb9e906455cd27 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 21 Aug 2005 18:26:56 +0000 Subject: [PATCH] Fixed #381 -- Clarified tutorial 1. Thanks, ssteiner git-svn-id: http://code.djangoproject.com/svn/django/trunk@543 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/tutorial01.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt index a5358fa729..4d42202588 100644 --- a/docs/tutorial01.txt +++ b/docs/tutorial01.txt @@ -345,8 +345,9 @@ free Python API Django gives you:: [] Wait a minute. ```` is, utterly, an unhelpful representation of -this object. Let's fix that by editing the polls model and adding a -``__repr__()`` method to both ``Poll`` and ``Choice``:: +this object. Let's fix that by editing the polls model +(in the ``polls/models/polls.py`` file) and adding a ``__repr__()`` method to +both ``Poll`` and ``Choice``:: class Poll(meta.Model): # ...