mirror of
https://github.com/django/django.git
synced 2025-11-17 10:43:25 +00:00
Fixed #10753 -- Fixed regression in dispatcher after [10398]. Thanks for the patch and tests, minmax
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10497 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9e9a2b88e8
commit
b366bcc962
2 changed files with 14 additions and 0 deletions
|
|
@ -124,6 +124,7 @@ class Signal(object):
|
|||
(r_key, _) = self.receivers[index]
|
||||
if r_key == lookup_key:
|
||||
del self.receivers[index]
|
||||
break
|
||||
|
||||
def send(self, sender, **named):
|
||||
"""Send signal from sender to all connected receivers.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue