Merge remote-tracking branch 'origin/master'

This commit is contained in:
Kenneth Reitz
2013-05-21 17:43:53 -04: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.