youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit ac79fa02b80f91a71b3c1f6d9a750c79d2ff378a
parent 7cc3570e53a22dd7f8329ecb4105c5738dcf76c9
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon,  9 Dec 2013 03:02:54 +0100

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

Diffstat:
Myoutube_dl/utils.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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: