logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: b3a286d69d2bf28ba32a77b0fe66932eb6d1bc65
parent 467d3c9a0c364fe4e24c6efd1d20317a80eee547
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date:   Fri,  6 Feb 2015 22:23:06 +0100

[YoutubeDL] _calc_cookies: add get_header method to _PseudoRequest (#4861)

Diffstat:

Myoutube_dl/YoutubeDL.py3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py @@ -938,6 +938,9 @@ class YoutubeDL(object): def has_header(self, h): return h in self.headers + def get_header(self, h, default=None): + return self.headers.get(h, default) + pr = _PseudoRequest(info_dict['url']) self.cookiejar.add_cookie_header(pr) return pr.headers.get('Cookie')