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): # ...