diff options
| author | remitamine <remitamine@gmail.com> | 2016-04-17 14:06:19 +0100 | 
|---|---|---|
| committer | remitamine <remitamine@gmail.com> | 2016-04-17 14:06:19 +0100 | 
| commit | 7bab22a4029feb651d08f4b631359a0d1aaffd71 (patch) | |
| tree | 1961653148ec4b2740fa50bbbb10b1ef3b761449 | |
| parent | 0f97fb4d00fa6353c9aebf38e632f559fe89b636 (diff) | |
[vice] remove unused import and variable
| -rw-r--r-- | youtube_dl/extractor/vice.py | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vice.py b/youtube_dl/extractor/vice.py index ec1245b0e..95daf4dfd 100644 --- a/youtube_dl/extractor/vice.py +++ b/youtube_dl/extractor/vice.py @@ -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')  | 
