From ae48d77ef8e14dae76fddcd5a677b897c7c7c4ae Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 23 Oct 2013 06:09:29 -0400 Subject: Fixed E225 pep8 warnings. --- django/dispatch/saferef.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/dispatch') 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 -- cgit v1.3