commit | 1b7da519b09d8885272d323af982d36675419075 | [log] [tgz] |
---|---|---|
author | Senthil Kumaran <senthil@uthcode.com> | Thu Oct 06 00:32:02 2011 +0800 |
committer | Senthil Kumaran <senthil@uthcode.com> | Thu Oct 06 00:32:02 2011 +0800 |
tree | 04b642a7c9dcd000d51a7e906f3b5de0aeafd620 | |
parent | ad87fa671939609f9ff7c0d489f09a8c86586fbd [diff] [blame] |
Issue13104 - Fix urllib.request.thishost() utility function.
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 773025a..d3b5c29 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py
@@ -2116,7 +2116,7 @@ """Return the IP addresses of the current host.""" global _thishost if _thishost is None: - _thishost = tuple(socket.gethostbyname_ex(socket.gethostname()[2])) + _thishost = tuple(socket.gethostbyname_ex(socket.gethostname())[2]) return _thishost _ftperrors = None