aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/breakcom.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/breakcom.py')
-rw-r--r--youtube_dl/extractor/breakcom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/breakcom.py b/youtube_dl/extractor/breakcom.py
index 66b9190a9..85635d1cc 100644
--- a/youtube_dl/extractor/breakcom.py
+++ b/youtube_dl/extractor/breakcom.py
@@ -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)