Ticket #25082: 25082.diff

File 25082.diff, 551 bytes (added by Tim Graham, 9 years ago)
  • docs/topics/checks.txt

    diff --git a/docs/topics/checks.txt b/docs/topics/checks.txt
    index c553577..df790b0 100644
    a b Registering and labeling checks  
    122122-------------------------------
    123123
    124124Lastly, your check function must be registered explicitly with system check
    125 registry.
     125registry. Checks should be registered in a file that's loaded when your
     126application is loaded; for example, in the :meth:`AppConfig.ready()
     127<django.apps.AppConfig.ready>` method.
    126128
    127129.. function:: register(*tags)(function)
    128130
Back to Top