Merge pull request #1375 from t-8ch/fix_digest_auth

don't replace 'Digest' in digest header value
This commit is contained in:
Kenneth Reitz
2013-05-21 14:33:25 -07:00
+1 -1
View File
@@ -153,7 +153,7 @@ class HTTPDigestAuth(AuthBase):
setattr(self, 'num_401_calls', num_401_calls + 1)
pat = re.compile(r'digest ', flags=re.IGNORECASE)
self.chal = parse_dict_header(pat.sub('', s_auth))
self.chal = parse_dict_header(pat.sub('', s_auth, count=1))
# Consume content and release the original connection
# to allow our new request to reuse the same one.