diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2009-04-10 18:58:32 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2009-04-10 18:58:32 +0000 |
| commit | b366bcc962d6390ecaa462d73fca9004c9e7f44c (patch) | |
| tree | 3181e648dc95a22772faf6113afc8ee70794f035 /django | |
| parent | 9e9a2b88e8d2f76cc85fcdad9bd463bf77181418 (diff) | |
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
Diffstat (limited to 'django')
| -rw-r--r-- | django/dispatch/dispatcher.py | 1 |
1 files changed, 1 insertions, 0 deletions
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. |
