From 5b1b33c7f498651c66fd2c81c877db190a5add6d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 22 Oct 1996 13:28:37 +0000 Subject: Fix another case where... --- Lib/urllib.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/urllib.py b/Lib/urllib.py index 4186502..99bed8f 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] -- cgit v0.12