From dde1507da113de8b523841b4d81a524e0b5af541 Mon Sep 17 00:00:00 2001 From: jacobtoppm Date: Thu, 27 Feb 2020 12:12:06 +0000 Subject: [PATCH] Fix typos --- docs/advanced_topics/custom_tasks.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced_topics/custom_tasks.rst b/docs/advanced_topics/custom_tasks.rst index 4c591f1191..64ff5c1b7b 100644 --- a/docs/advanced_topics/custom_tasks.rst +++ b/docs/advanced_topics/custom_tasks.rst @@ -252,7 +252,7 @@ Next, you need to instantiate the notifier, and connect it to the ``task_submitt task_submitted.connect(user_approval_task_submission_email_notifier, dispatch_uid='user_approval_task_submitted_email_notification') ``register_signal_handlers()`` should then be run on loading the app: for example, by adding it to the ``ready()`` method in your ``AppConfig`` -(and making sure you set this config is set as ``default_app_config`` in ``/__init__.py``). +(and making sure this config is set as ``default_app_config`` in ``/__init__.py``). .. code-block:: python