From 2140c98fa493404888744f3917636ec0950f9671 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Sat, 30 Jan 2016 19:55:58 +0100 Subject: [PATCH] Fix syntax error --- requests/auth.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requests/auth.py b/requests/auth.py index 4529ec7a..edf4c8dc 100644 --- a/requests/auth.py +++ b/requests/auth.py @@ -51,7 +51,7 @@ class HTTPBasicAuth(AuthBase): return all([ self.username == getattr(other, 'username', None), self.password == getattr(other, 'password', None) - ] + ]) def __ne__(self, other): return not self == other @@ -235,7 +235,7 @@ class HTTPDigestAuth(AuthBase): return all([ self.username == getattr(other, 'username', None), self.password == getattr(other, 'password', None) - ] + ]) def __ne__(self, other): return not self == other