From: Guido van Rossum Date: Tue, 22 Oct 1996 13:28:37 +0000 (+0000) Subject: Fix another case where... X-Git-Tag: v1.4~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5b1b33c7f498651c66fd2c81c877db190a5add6d;p=thirdparty%2FPython%2Fcpython.git Fix another case where... --- diff --git a/Lib/urllib.py b/Lib/urllib.py index 418650253b81..99bed8f1cd77 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -144,6 +144,7 @@ class URLopener: if self.tempcache and self.tempcache.has_key(url): return self.tempcache[url] url1 = unwrap(url) + self.openedurl = url1 if self.tempcache and self.tempcache.has_key(url1): self.tempcache[url] = self.tempcache[url1] return self.tempcache[url1]