[subtitles] rename SubitlesIE to SubtitlesInfoExtractor

Otherwise it can be automatically detected as a IE ready for use.
This commit is contained in:
Jaime Marquínez Ferrándiz 2013-09-11 15:51:04 +02:00
parent de7f3446e0
commit 54d39d8b2f
3 changed files with 5 additions and 5 deletions

View file

@ -10,7 +10,7 @@ from ..utils import (
)
class SubtitlesIE(InfoExtractor):
class SubtitlesInfoExtractor(InfoExtractor):
def _list_available_subtitles(self, video_id):
""" outputs the available subtitles for the video """
@ -72,7 +72,7 @@ class SubtitlesIE(InfoExtractor):
pass
class NoAutoSubtitlesIE(SubtitlesIE):
class NoAutoSubtitlesInfoExtractor(SubtitlesInfoExtractor):
""" A subtitle class for the servers that don't support auto-captions"""
def _request_automatic_caption(self, video_id, webpage):