diff options
| author | Timo Graham <timograham@gmail.com> | 2010-12-31 13:10:05 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2010-12-31 13:10:05 +0000 |
| commit | 2d854539c327b3630265bec10263ae61ce81d202 (patch) | |
| tree | b7dce9ceba4cc09e458dc954b1889a607f2879ca /docs | |
| parent | ae7f7a257fdf51b93103ff71ac86b17b67135029 (diff) | |
[1.2.X] Fixed #14997 - A typo in "Overriding delete". thanks phunehehe for the report.
Backport of r15117 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@15118 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/db/models.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt index f90a8d177b..be3b64847f 100644 --- a/docs/topics/db/models.txt +++ b/docs/topics/db/models.txt @@ -756,8 +756,8 @@ code will automatically support those arguments when they are added. Note that the :meth:`~Model.delete()` method for an object is not necessarily called when :ref:`deleting objects in bulk using a QuerySet<topics-db-queries-delete>`. To ensure customized delete logic - gets executed, you can use :data:`~django.db.models.signals.pre_save` - and/or :data:`~django.db.models.signals.post_save` signals. + gets executed, you can use :data:`~django.db.models.signals.pre_delete` + and/or :data:`~django.db.models.signals.post_delete` signals. Executing custom SQL -------------------- |
