summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorChris Beaven <smileychris@gmail.com>2011-04-22 21:23:26 +0000
committerChris Beaven <smileychris@gmail.com>2011-04-22 21:23:26 +0000
commit5bbba4b9ada4fe278fd328565198b9a2a5fd4e4e (patch)
treeaa3402c558f26169089d2818d0f82327970895e2 /docs/ref
parent534c427b20237fb4224323c6f626fa68720545ee (diff)
Fixes #15862 -- Error in post_syncdb documentation example. Thanks for the report and patch andialbrecht.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/signals.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index 0a2812aa90..35cd41868b 100644
--- a/docs/ref/signals.txt
+++ b/docs/ref/signals.txt
@@ -389,7 +389,7 @@ Arguments sent with this signal:
For example, the :mod:`django.contrib.auth` app only prompts to create a
superuser when ``interactive`` is ``True``.
-For example, yourapp/signals/__init__.py could be written like::
+For example, ``yourapp/management/__init__.py`` could be written like::
from django.db.models.signals import post_syncdb
import yourapp.models