Skip to content

Commit

Permalink
Fixed django#13080 -- Corrected accepted values of sender parameter i…
Browse files Browse the repository at this point in the history
…n Signal.connect() docstring.
  • Loading branch information
berkerpeksag authored and timgraham committed May 30, 2016
1 parent 1b00ed0 commit 995d09e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/dispatch/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def connect(self, receiver, sender=None, weak=True, dispatch_uid=None):
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
Expand Down

0 comments on commit 995d09e

Please sign in to comment.