commit | 5b1b33c7f498651c66fd2c81c877db190a5add6d | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Oct 22 13:28:37 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Oct 22 13:28:37 1996 +0000 |
tree | ec0622f975d9f79604093e67ba53ce839d114f59 | |
parent | 58055847f49db92c02ebb96ecfaef0bfcdbc81f9 [diff] [blame] |
Fix another case where...
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 @@ 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]