diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-01-01 00:12:41 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-01-01 00:12:41 +0600 | 
| commit | 68f705cac53510dc272eebfe83694a2cbf2c2b46 (patch) | |
| tree | b826f98296e271242cb5cf0a7ac831ed3ebc6ac7 | |
| parent | 079d1dcd8033b7c1470ad84899967d787cf1dec7 (diff) | |
[tnaflix] Make sure config URL has correct scheme
| -rw-r--r-- | youtube_dl/extractor/tnaflix.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/tnaflix.py b/youtube_dl/extractor/tnaflix.py index b9179ca80..d48cbbf14 100644 --- a/youtube_dl/extractor/tnaflix.py +++ b/youtube_dl/extractor/tnaflix.py @@ -49,8 +49,8 @@ class TNAFlixIE(InfoExtractor):          if duration:              duration = parse_duration(duration[1:]) -        cfg_url = self._html_search_regex( -            self._CONFIG_REGEX, webpage, 'flashvars.config') +        cfg_url = self._proto_relative_url(self._html_search_regex( +            self._CONFIG_REGEX, webpage, 'flashvars.config'), 'http:')          cfg_xml = self._download_xml(              cfg_url, display_id, note='Downloading metadata',  | 
