aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/space.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-14 05:54:16 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-14 05:54:16 +0600
commit4fcaa4f4a5ef328009bef53ebc491ebe76452550 (patch)
tree38cea6c4ac9f4266604598003d2e02d385edc86b /youtube_dl/extractor/space.py
parent536f819eda975224666374a9ce83cc3472f5aa5a (diff)
downloadyoutube-dl-4fcaa4f4a5ef328009bef53ebc491ebe76452550.tar.xz
[brightcove] Rename extractor to brightcove legacy
Old embedding approaches are now "Legacy Studio"
Diffstat (limited to 'youtube_dl/extractor/space.py')
-rw-r--r--youtube_dl/extractor/space.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/space.py b/youtube_dl/extractor/space.py
index c2d0d36a6..2f190f764 100644
--- a/youtube_dl/extractor/space.py
+++ b/youtube_dl/extractor/space.py
@@ -3,7 +3,7 @@ from __future__ import unicode_literals
import re
from .common import InfoExtractor
-from .brightcove import BrightcoveIE
+from .brightcove import BrightcoveLegacyIE
from ..utils import RegexNotFoundError, ExtractorError
@@ -31,8 +31,8 @@ class SpaceIE(InfoExtractor):
brightcove_url = self._og_search_video_url(webpage)
except RegexNotFoundError:
# Other videos works fine with the info from the object
- brightcove_url = BrightcoveIE._extract_brightcove_url(webpage)
+ brightcove_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
if brightcove_url is None:
raise ExtractorError(
'The webpage does not contain a video', expected=True)
- return self.url_result(brightcove_url, BrightcoveIE.ie_key())
+ return self.url_result(brightcove_url, BrightcoveLegacyIE.ie_key())