diff options
| author | Christopher Baines <mail@cbaines.net> | 2015-12-22 13:46:21 +0000 | 
|---|---|---|
| committer | Christopher Baines <mail@cbaines.net> | 2015-12-22 13:46:21 +0000 | 
| commit | 1f19c06843e6d266368e3b570352bdf7d789a0de (patch) | |
| tree | 042bc99c162d671c2b2fb7cc5cb4400ef26c1bed /requests/auth.py | |
| parent | cb40ec082506c0d9eb05978839bed2f12541af35 (diff) | |
| download | python-requests-upstream.tar python-requests-upstream.tar.gz  | |
Import requests_2.9.1.orig.tar.gzupstream/2.9.1upstream
Diffstat (limited to 'requests/auth.py')
| -rw-r--r-- | requests/auth.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/requests/auth.py b/requests/auth.py index 8c4e847..2af55fb 100644 --- a/requests/auth.py +++ b/requests/auth.py @@ -136,7 +136,7 @@ class HTTPDigestAuth(AuthBase):          if _algorithm == 'MD5-SESS':              HA1 = hash_utf8('%s:%s:%s' % (HA1, nonce, cnonce)) -        if qop is None: +        if not qop:              respdig = KD(HA1, "%s:%s" % (nonce, HA2))          elif qop == 'auth' or 'auth' in qop.split(','):              noncebit = "%s:%s:%s:%s:%s" % (  |