From 074a82f49b1443e66885ea861bbd2d2cb04af43e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 10 Jul 2015 10:37:25 -0400 Subject: [PATCH] Fixed #25082 -- Documented where to register system checks. --- docs/topics/checks.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/topics/checks.txt b/docs/topics/checks.txt index c553577310..df790b0924 100644 --- a/docs/topics/checks.txt +++ b/docs/topics/checks.txt @@ -122,7 +122,9 @@ Registering and labeling checks ------------------------------- Lastly, your check function must be registered explicitly with system check -registry. +registry. Checks should be registered in a file that's loaded when your +application is loaded; for example, in the :meth:`AppConfig.ready() +` method. .. function:: register(*tags)(function)