From b366bcc962d6390ecaa462d73fca9004c9e7f44c Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 10 Apr 2009 18:58:32 +0000 Subject: 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 --- django/dispatch/dispatcher.py | 1 + 1 file changed, 1 insertion(+) (limited to 'django/dispatch') diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py index bb60fc906d..07377d6411 100644 --- a/django/dispatch/dispatcher.py +++ b/django/dispatch/dispatcher.py @@ -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. -- cgit v1.3