Browse Source

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

totalwebcasting
Jaime Marquínez Ferrándiz 10 years ago
parent
commit
b3a286d69d
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube_dl/YoutubeDL.py

+ 3
- 0
youtube_dl/YoutubeDL.py View File

@ -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')


Loading…
Cancel
Save