From: Philipp Hagemeister Date: Mon, 9 Dec 2013 02:02:54 +0000 (+0100) Subject: Restore Python 2.6.<6 compatibility (Fixes #1860) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=ac79fa02b80f91a71b3c1f6d9a750c79d2ff378a;p=youtube-dl Restore Python 2.6.<6 compatibility (Fixes #1860) --- diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index a84aa59c2..5ba06d965 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -547,7 +547,7 @@ def make_HTTPS_handler(opts_no_check_certificate): 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: