Fixed #26918 -- Clarified source of pre/post_save update_fields argument.

This commit is contained in:
Tim Graham 2016-07-21 10:06:41 -04:00 committed by GitHub
parent 09d38746ba
commit a05d86a69a
1 changed files with 4 additions and 4 deletions

View File

@ -125,8 +125,8 @@ Arguments sent with this signal:
The database alias being used. The database alias being used.
``update_fields`` ``update_fields``
The set of fields to update explicitly specified in the ``save()`` method. The set of fields to update as passed to :meth:`.Model.save`, or ``None``
``None`` if this argument was not used in the ``save()`` call. if ``update_fields`` wasn't passed to ``save()``.
``post_save`` ``post_save``
------------- -------------
@ -158,8 +158,8 @@ Arguments sent with this signal:
The database alias being used. The database alias being used.
``update_fields`` ``update_fields``
The set of fields to update explicitly specified in the ``save()`` method. The set of fields to update as passed to :meth:`.Model.save`, or ``None``
``None`` if this argument was not used in the ``save()`` call. if ``update_fields`` wasn't passed to ``save()``.
``pre_delete`` ``pre_delete``
-------------- --------------