diff options
Diffstat (limited to 'Lib/urllib/request.py')
| -rw-r--r-- | Lib/urllib/request.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 72e91dd..0389f5e 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -1315,7 +1315,7 @@ class FileHandler(BaseHandler):          url = req.selector          if url[:2] == '//' and url[2:3] != '/' and (req.host and                  req.host != 'localhost'): -            if not req.host is self.get_names(): +            if not req.host in self.get_names():                  raise URLError("file:// scheme is supported only on localhost")          else:              return self.open_local_file(req)  | 
