summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-23 12:58:57 -0500
committerTim Graham <timograham@gmail.com>2015-01-23 13:00:24 -0500
commit2ed1980e0f82c9a952bdecbeb6f5d36513d74cc8 (patch)
tree06cf421720250ca8f42ee847b25840af5b45dfb3
parentbc93568500303b4fa00c89c7f1607fab455b6c32 (diff)
[1.8.x] Clarified docstring in dispatch/dispatcher.py
Backport of 851f5bd413a93708436a129442007448755b34f3 from master
-rw-r--r--django/dispatch/dispatcher.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py
index fcf80f3fac..b02adb8e80 100644
--- a/django/dispatch/dispatcher.py
+++ b/django/dispatch/dispatcher.py
@@ -64,9 +64,9 @@ class Signal(object):
Receivers must be able to accept keyword arguments.
- If receivers have a dispatch_uid attribute, the receiver will
- not be added if another receiver already exists with that
- dispatch_uid.
+ If a receiver is connected with a dispatch_uid argument, it
+ will not be added if another receiver was already connected
+ with that dispatch_uid.
sender
The sender to which the receiver should respond. Must either be