diff options
Diffstat (limited to 'django/dispatch')
| -rw-r--r-- | django/dispatch/saferef.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/dispatch/saferef.py b/django/dispatch/saferef.py index 41756a1001..7c971e44f7 100644 --- a/django/dispatch/saferef.py +++ b/django/dispatch/saferef.py @@ -83,7 +83,7 @@ class BoundMethodWeakref(object): of already-referenced methods. """ key = cls.calculateKey(target) - current =cls._allInstances.get(key) + current = cls._allInstances.get(key) if current is not None: current.deletionMethods.append(onDelete) return current |
