1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-09 22:59:32 +00:00

[test/test_http] Fix getsockname() on Jython

This commit is contained in:
Yen Chi Hsuan 2016-05-29 19:24:28 +08:00
parent 8c32e5dc32
commit 54fb199681

View file

@ -17,7 +17,7 @@ TEST_DIR = os.path.dirname(os.path.abspath(__file__))
def http_server_port(httpd):
if os.name == 'java':
if os.name == 'java' and isinstance(httpd.socket, ssl.SSLSocket):
# In Jython SSLSocket is not a subclass of socket.socket
sock = httpd.socket.sock
else: