1
0
mirror of https://github.com/django/django.git synced 2025-01-27 02:29:55 +00:00

[1.8.x] Improved wording in tutorial 1.

Backport of dcdef1fe2ec59a7aeca39efc5a29f0d238d0c560 from master
This commit is contained in:
Alex Shaindlin 2015-02-27 16:56:38 -05:00 committed by Tim Graham
parent b825ec38c1
commit 5a3b59370c

View File

@ -671,8 +671,8 @@ of this object. Let's fix that by editing the ``Question`` model (in the
return self.choice_text
It's important to add :meth:`~django.db.models.Model.__str__` methods to your
models, not only for your own sanity when dealing with the interactive prompt,
but also because objects' representations are used throughout Django's
models, not only for your own convenience when dealing with the interactive
prompt, but also because objects' representations are used throughout Django's
automatically-generated admin.
.. admonition:: ``__str__`` or ``__unicode__``?