Browse Source

[breakcom] Fix error when calling _search_regex

I passed `’webpage’` instead of the variable `webpage`.
totalwebcasting
Jaime Marquínez Ferrándiz 11 years ago
parent
commit
9b77f951c7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/breakcom.py

+ 1
- 1
youtube_dl/extractor/breakcom.py View File

@ -24,7 +24,7 @@ class BreakIE(InfoExtractor):
embed_url = 'http://www.break.com/embed/%s' % video_id
webpage = self._download_webpage(embed_url, video_id)
info_json = self._search_regex(r'var embedVars = ({.*})\s*?</script>',
'webpage', 'info json', flags=re.DOTALL)
webpage, 'info json', flags=re.DOTALL)
info = json.loads(info_json)
video_url = info['videoUri']
m_youtube = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', video_url)


Loading…
Cancel
Save