commit | ff8712263deb720496b174ab95fbe81b162b8b0a | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Jun 07 13:34:10 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Jun 07 13:34:10 2007 +0000 |
tree | a38aaa0bdc7b3cf9e51ae6277df403d13f24eeee | |
parent | 04233ee5e16478e5c092b2e275587605157607a6 [diff] [blame] |
Patch #1667860: Fix UnboundLocalError in urllib2.
diff --git a/Lib/urllib2.py b/Lib/urllib2.py index a1badb7..415c991 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py
@@ -949,7 +949,7 @@ respdig = KD(H(A1), "%s:%s" % (nonce, H(A2))) else: # XXX handle auth-int. - pass + raise URLError("qop '%s' is not supported." % qop) # XXX should the partial digests be encoded too?