Ticket #15862: post_syncdb_docfix.diff

File post_syncdb_docfix.diff, 541 bytes (added by Andi Albrecht, 13 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:  
    389389    For example, the :mod:`django.contrib.auth` app only prompts to create a
    390390    superuser when ``interactive`` is ``True``.
    391391
    392 For example, yourapp/signals/__init__.py could be written like::
     392For example, yourapp/management/__init__.py could be written like::
    393393
    394394    from django.db.models.signals import post_syncdb
    395395    import yourapp.models
Back to Top