From 5fa4e74d61d9093ee7e0a7bf1e2a56b6c0780c9a Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 29 May 2017 22:43:12 -0400 Subject: [PATCH] fix flake8 indent error --- requests/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/auth.py b/requests/auth.py index a44b4d15..1a182dff 100644 --- a/requests/auth.py +++ b/requests/auth.py @@ -192,7 +192,7 @@ class HTTPDigestAuth(AuthBase): elif qop == 'auth' or 'auth' in qop.split(','): noncebit = "%s:%s:%s:%s:%s" % ( nonce, ncvalue, cnonce, 'auth', HA2 - ) + ) respdig = KD(HA1, noncebit) else: # XXX handle auth-int.