youtube-dl

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

commit 0f8d03f81cb20ba0f2a4358b8111146b589d1c5d
parent 077174f4ed2578706cf11a2b2ea74ddc309b11db
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri,  7 Dec 2012 00:39:44 +0100

Let YoutubeDLHandler (transparent gzip) handle HTTPS URLs as well (Needed for #579)

Diffstat:
Myoutube_dl/utils.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -506,3 +506,6 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler): resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code) resp.msg = old_resp.msg return resp + + https_request = http_request + https_response = http_response