summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-01-24 20:05:35 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-01-24 20:08:24 +0100
commit4b405cfc6e4f9184567b94ee2f8a4a9851a912b5 (patch)
treed119de9a77f0793d13ea1a70a2dfb782cb5717f7
parente5660ee6aebacee4b149648bee1a7ce1ec72c1e4 (diff)
downloadyoutube-dl-4b405cfc6e4f9184567b94ee2f8a4a9851a912b5.tar.gz
youtube-dl-4b405cfc6e4f9184567b94ee2f8a4a9851a912b5.tar.xz
youtube-dl-4b405cfc6e4f9184567b94ee2f8a4a9851a912b5.zip
[YoutubeDL._calc_cookies] Restore the 'has_header' method
I didn't copied it from downloader/external
-rwxr-xr-xyoutube_dl/YoutubeDL.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 4c3d45f48..458fd15ea 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -892,6 +892,9 @@ class YoutubeDL(object):
             def get_full_url(self):
                 return self.url
 
+            def has_header(self, h):
+                return h in self.headers
+
         pr = _PseudoRequest(info_dict['url'])
         self.cookiejar.add_cookie_header(pr)
         return pr.headers.get('Cookie')