mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-12-17 22:55:42 +07:00
Restore Python 2.6.<6 compatibility (Fixes #1860)
This commit is contained in:
@@ -547,7 +547,7 @@ def __init__(self, *args, **kwargs):
|
|||||||
|
|
||||||
def connect(self):
|
def connect(self):
|
||||||
sock = socket.create_connection((self.host, self.port), self.timeout)
|
sock = socket.create_connection((self.host, self.port), self.timeout)
|
||||||
if self._tunnel_host:
|
if getattr(self, '_tunnel_host', False):
|
||||||
self.sock = sock
|
self.sock = sock
|
||||||
self._tunnel()
|
self._tunnel()
|
||||||
try:
|
try:
|
||||||
|
|||||||
Reference in New Issue
Block a user