diff options
| author | Guido van Rossum <guido@python.org> | 1996-10-10 16:01:16 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1996-10-10 16:01:16 +0000 |
| commit | b030bc026eb57861568fdc9310512185c95a6f11 (patch) | |
| tree | 59ea60cb85353f058d38b383eed94aef4e6602de | |
| parent | b5fa1cb855a641d029eed5309cb34da0e94a2d40 (diff) | |
| download | cpython-git-b030bc026eb57861568fdc9310512185c95a6f11.tar.gz | |
Fix some cases where self.openedurl wasn't set.
| -rw-r--r-- | Lib/urllib.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py index 7b5ed6b359..418650253b 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -254,12 +254,13 @@ class URLopener: # Use local file def open_local_file(self, url): host, file = splithost(url) - if not host: return addinfourl(open(url2pathname(file), 'r'), noheaders(), self.openedurl) + if not host: + return addinfourl(open(url2pathname(file), 'r'), noheaders(), 'file:'+file) host, port = splitport(host) if not port and socket.gethostbyname(host) in ( localhost(), thishost()): file = unquote(file) - return addinfourl(open(url2pathname(file), 'r'), noheaders(), self.openedurl) + return addinfourl(open(url2pathname(file), 'r'), noheaders(), 'file:'+file) raise IOError, ('local file error', 'not on local host') # Use FTP protocol |
