mirror of https://github.com/yt-dlp/yt-dlp.git
[vice] remove unused import and variable
This commit is contained in:
parent
0f97fb4d00
commit
7bab22a402
|
@ -3,7 +3,6 @@ from __future__ import unicode_literals
|
|||
import re
|
||||
|
||||
from .common import InfoExtractor
|
||||
from .ooyala import OoyalaIE
|
||||
from ..utils import ExtractorError
|
||||
|
||||
|
||||
|
@ -49,7 +48,6 @@ class ViceIE(InfoExtractor):
|
|||
r'embedCode=([^&\'"]+)', webpage,
|
||||
'ooyala embed code', default=None)
|
||||
if embed_code:
|
||||
ooyala_url = OoyalaIE._url_for_embed_code(embed_code)
|
||||
return self.url_result('ooyala:%s' % embed_code, 'Ooyala')
|
||||
youtube_id = self._search_regex(
|
||||
r'data-youtube-id="([^"]+)"', webpage, 'youtube id')
|
||||
|
|
Loading…
Reference in New Issue