Ticket #15862: post_syncdb_docfix.diff
File post_syncdb_docfix.diff, 541 bytes (added by , 14 years ago) |
---|
-
docs/ref/signals.txt
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index 0a2812a..d8f816a 100644
a b Arguments sent with this signal: 389 389 For example, the :mod:`django.contrib.auth` app only prompts to create a 390 390 superuser when ``interactive`` is ``True``. 391 391 392 For example, yourapp/ signals/__init__.py could be written like::392 For example, yourapp/management/__init__.py could be written like:: 393 393 394 394 from django.db.models.signals import post_syncdb 395 395 import yourapp.models