mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
quotes
This commit is contained in:
+2
-2
@@ -88,8 +88,8 @@ class HTTPDigestAuth(AuthBase):
|
||||
p_parsed = urlparse(r.request.url)
|
||||
path = p_parsed.path + p_parsed.query
|
||||
|
||||
A1 = "%s:%s:%s" % (self.username, realm, self.password)
|
||||
A2 = "%s:%s" % (r.request.method, path)
|
||||
A1 = '%s:%s:%s' % (self.username, realm, self.password)
|
||||
A2 = '%s:%s' % (r.request.method, path)
|
||||
|
||||
if qop == 'auth':
|
||||
if nonce == last_nonce:
|
||||
|
||||
Reference in New Issue
Block a user