diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-10 21:40:38 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2009-04-10 21:40:38 +0000 |
| commit | 06f379bd5ce264aee2f85fd0725bd044e3266fb7 (patch) | |
| tree | 17aae10494faec36fdb364892a380cd4a8bbeb55 /django | |
| parent | 2ab40287bc8996d2cba1edd562fbe648c880ad90 (diff) | |
[1.0.X] Fixed #10753 -- Fixed regression in dispatcher after [10398]. Thanks for the patch and tests, minmax. Backport of r10497 from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10503 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. |
