[utils] change extract_attributes to work in python 2
This commit is contained in:
parent
c01e1a96aa
commit
9550ca506f
2 changed files with 3 additions and 3 deletions
|
@ -383,8 +383,7 @@ class BrightcoveInPageEmbedIE(InfoExtractor):
|
|||
return None
|
||||
|
||||
def _real_extract(self, url):
|
||||
mobj = re.match(self._VALID_URL, url)
|
||||
account_id, player_id, embed, video_id = mobj.groups()
|
||||
account_id, player_id, embed, video_id = re.match(self._VALID_URL, url).groups()
|
||||
|
||||
webpage = self._download_webpage('http://players.brightcove.net/%s/%s_%s/index.min.js' % (account_id, player_id, embed), video_id)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue