mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
Restore Python 2.6.<6 compatibility (Fixes #1860)
This commit is contained in:
parent
7cc3570e53
commit
ac79fa02b8
|
@ -547,7 +547,7 @@ def make_HTTPS_handler(opts_no_check_certificate):
|
||||||
|
|
||||||
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:
|
||||||
|
|
Loading…
Reference in a new issue