Fix wait_for on python < 2.6 (#3790) (#3973)

pull/18777/head
Stanislav Antic 8 years ago committed by Matt Clay
parent f595b27e47
commit 4c92652e7b

@ -337,7 +337,7 @@ def _create_connection(host, port, connect_timeout):
Socket object Socket object
""" """
if sys.version_info < (2, 6): if sys.version_info < (2, 6):
(family, _) = _convert_host_to_ip(host) (family, _) = (_convert_host_to_ip(host))[0]
connect_socket = socket.socket(family, socket.SOCK_STREAM) connect_socket = socket.socket(family, socket.SOCK_STREAM)
connect_socket.settimeout(connect_timeout) connect_socket.settimeout(connect_timeout)
connect_socket.connect( (host, port) ) connect_socket.connect( (host, port) )

Loading…
Cancel
Save