diff options
| author | Tim Graham <timograham@gmail.com> | 2016-07-21 10:06:41 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-07-21 10:07:24 -0400 |
| commit | c8d166241f5f3caf2fbb03b10f0d59346dedbc9a (patch) | |
| tree | ce4e8ad6fa5b7e374b793f12f0eda6bd20ec9100 | |
| parent | dcf0a35b088ba9ce8907d8f34178bd6dffc27022 (diff) | |
[1.10.x] Fixed #26918 -- Clarified source of pre/post_save update_fields argument.
Backport of a05d86a69a7f11f00032b8d7846932b139c670e0 from master
| -rw-r--r-- | docs/ref/signals.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index a3fad2d6ea..cc0567bc3b 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -125,8 +125,8 @@ Arguments sent with this signal: The database alias being used. ``update_fields`` - The set of fields to update explicitly specified in the ``save()`` method. - ``None`` if this argument was not used in the ``save()`` call. + The set of fields to update as passed to :meth:`.Model.save`, or ``None`` + if ``update_fields`` wasn't passed to ``save()``. ``post_save`` ------------- @@ -158,8 +158,8 @@ Arguments sent with this signal: The database alias being used. ``update_fields`` - The set of fields to update explicitly specified in the ``save()`` method. - ``None`` if this argument was not used in the ``save()`` call. + The set of fields to update as passed to :meth:`.Model.save`, or ``None`` + if ``update_fields`` wasn't passed to ``save()``. ``pre_delete`` -------------- |
