summaryrefslogtreecommitdiff
path: root/tests/testapp/models
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-09 14:33:30 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-09 14:33:30 +0000
commitd87ca56c63a8965dfb8b45b517c2bfd8aab8d5f9 (patch)
tree8662951ff45dffe4e9cae61ddfac4470a0e4aea7 /tests/testapp/models
parentb108360407af17b2220b1144e9fb10a961175ba7 (diff)
Removed period from save_delete_hooks docstring -- it doesn't fit our style
git-svn-id: http://code.djangoproject.com/svn/django/trunk@438 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/testapp/models')
-rw-r--r--tests/testapp/models/save_delete_hooks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testapp/models/save_delete_hooks.py b/tests/testapp/models/save_delete_hooks.py
index dfff112d7f..3c895b8bee 100644
--- a/tests/testapp/models/save_delete_hooks.py
+++ b/tests/testapp/models/save_delete_hooks.py
@@ -1,5 +1,5 @@
"""
-13. Adding hooks before/after saving and deleting.
+13. Adding hooks before/after saving and deleting
Django provides hooks for executing arbitrary code around ``save()`` and
``delete()``. Just add any of the following methods to your model: