1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #12887 - Fixed typo in release docs. Thanks blueyed.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12458 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel
2010-02-21 23:37:54 +00:00
parent b2c43df84f
commit 421f0195c1
2 changed files with 3 additions and 3 deletions

View File

@@ -146,7 +146,7 @@ In order to support multiple database configurations, Django 1.2 has
added a ``_state`` attribute to object instances. This attribute will
appear in ``__dict__`` for a model instance. If your code relies on
iterating over __dict__ to obtain a list of fields, you must now
filter the ``_state`` attribute of out ``__dict__``.
filter the ``_state`` attribute out of ``__dict__``.
``get_db_prep_*()`` methods on ``Field``
----------------------------------------