From 742868d68c2429915310589326faee3956b96784 Mon Sep 17 00:00:00 2001 From: medmunds Date: Fri, 13 May 2016 12:17:27 -0700 Subject: [PATCH] Docs: missed param in pre_send signature [ci skip] --- docs/sending/signals.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sending/signals.rst b/docs/sending/signals.rst index a4d785a..7afbde7 100644 --- a/docs/sending/signals.rst +++ b/docs/sending/signals.rst @@ -68,7 +68,7 @@ without raising any other errors. Your pre_send receiver must be a function with this signature: - .. function:: def my_pre_send_handler(sender, message, **kwargs): + .. function:: def my_pre_send_handler(sender, message, esp_name, **kwargs): (You can name it anything you want.)