Merge pull request #2986 from untitaker/syntax-error

Fix syntax error
This commit is contained in:
Cory Benfield
2016-01-30 19:14:20 +00:00
+2 -2
View File
@@ -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