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

This commit is contained in:
Stanislav Antic 2016-06-17 16:04:26 +02:00 committed by Brian Coca
parent a1e6311197
commit f0f5272f90

View file

@ -337,7 +337,7 @@ def _create_connection(host, port, connect_timeout):
Socket object
"""
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.settimeout(connect_timeout)
connect_socket.connect( (host, port) )