From df8d8d4292684d6ffa7474f1e201aed486f02b53 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 28 Mar 2016 18:33:29 -0400 Subject: Fixed E128 flake8 warnings in django/. --- django/dispatch/dispatcher.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'django/dispatch') diff --git a/django/dispatch/dispatcher.py b/django/dispatch/dispatcher.py index 2878ffac02..052c72c777 100644 --- a/django/dispatch/dispatcher.py +++ b/django/dispatch/dispatcher.py @@ -144,8 +144,7 @@ class Signal(object): the unique identifier of the receiver to disconnect """ if weak is not None: - warnings.warn("Passing `weak` to disconnect has no effect.", - RemovedInDjango20Warning, stacklevel=2) + warnings.warn("Passing `weak` to disconnect has no effect.", RemovedInDjango20Warning, stacklevel=2) if dispatch_uid: lookup_key = (dispatch_uid, _make_id(sender)) else: -- cgit v1.3