Treat file://localhost/ as local too (same as file:/ and file:///).

Fixes #607789, bugfix candidate.
This commit is contained in:
Jack Jansen 2002-09-12 19:47:52 +00:00
parent 10c6eda070
commit 3ae2dc5e5e
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ class URLopener:
def open_file(self, url):
"""Use local file or FTP depending on form of URL."""
if url[:2] == '//' and url[2:3] != '/':
if url[:2] == '//' and url[2:3] != '/' and url[2:12] != 'localhost/':
return self.open_ftp(url)
else:
return self.open_local_file(url)