[nuevo] Pass headers to _extract_nuevo

pull/8/head
Sergey M․ 2017-05-08 20:03:38 +07:00
rodzic 52294cdda7
commit 3d40084b83
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2C393E0F18A9236D
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -10,9 +10,10 @@ from ..utils import (
class NuevoBaseIE(InfoExtractor):
def _extract_nuevo(self, config_url, video_id):
def _extract_nuevo(self, config_url, video_id, headers={}):
config = self._download_xml(
config_url, video_id, transform_source=lambda s: s.strip())
config_url, video_id, transform_source=lambda s: s.strip(),
headers=headers)
title = xpath_text(config, './title', 'title', fatal=True).strip()
video_id = xpath_text(config, './mediaid', default=video_id)