Inlined a note in docs/ref/models/expressions.txt.

This commit is contained in:
Tim Graham 2016-11-09 08:20:30 -05:00
parent f8fab6f902
commit 0d6c7cae7c
1 changed files with 4 additions and 7 deletions

View File

@ -119,10 +119,7 @@ know about it - it is dealt with entirely by the database. All Python does,
through Django's ``F()`` class, is create the SQL syntax to refer to the field
and describe the operation.
.. note::
In order to access the new value that has been saved in this way, the object
will need to be reloaded::
To access the new value saved this way, the object must be reloaded::
reporter = Reporters.objects.get(pk=reporter.pk)
# Or, more succinctly: