Browse Source

[tnaflix] Make sure config URL has correct scheme

totalwebcasting
Sergey M․ 10 years ago
parent
commit
68f705cac5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/tnaflix.py

+ 2
- 2
youtube_dl/extractor/tnaflix.py View File

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


Loading…
Cancel
Save