diff options
Diffstat (limited to 'docs/tutorial01.txt')
| -rw-r--r-- | docs/tutorial01.txt | 5 |
1 files 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:: [<Poll object>] Wait a minute. ``<Poll object>`` 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): # ... |
