summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--requests/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/requests/auth.py b/requests/auth.py
index 0a8f3107..fab05cf3 100644
--- a/requests/auth.py
+++ b/requests/auth.py
@@ -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.