summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/dispatch/dispatcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py
index 052c72c777..30f339a47c 100644
--- a/django/dispatch/dispatcher.py
+++ b/django/dispatch/dispatcher.py
@@ -74,7 +74,7 @@ class Signal(object):
sender
The sender to which the receiver should respond. Must either be
- of type Signal, or None to receive events from any sender.
+ a Python object, or None to receive events from any sender.
weak
Whether to use weak references to the receiver. By default, the