1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 12:41:20 +02:00

Restore Python 2.6.<6 compatibility (Fixes #1860)

This commit is contained in:
Philipp Hagemeister 2013-12-09 03:02:54 +01:00
parent 7cc3570e53
commit ac79fa02b8

View File

@ -547,7 +547,7 @@ def __init__(self, *args, **kwargs):
def connect(self):
sock = socket.create_connection((self.host, self.port), self.timeout)
if self._tunnel_host:
if getattr(self, '_tunnel_host', False):
self.sock = sock
self._tunnel()
try: