Remove the compatibility code used before the new format system was implemented
This commit is contained in:
parent
ce93879a9b
commit
fb7abb31af
12 changed files with 15 additions and 67 deletions
|
@ -93,7 +93,7 @@ class MTVIE(InfoExtractor):
|
|||
else:
|
||||
description = None
|
||||
|
||||
info = {
|
||||
return {
|
||||
'title': itemdoc.find('title').text,
|
||||
'formats': self._extract_video_formats(mediagen_page),
|
||||
'id': video_id,
|
||||
|
@ -101,11 +101,6 @@ class MTVIE(InfoExtractor):
|
|||
'description': description,
|
||||
}
|
||||
|
||||
# TODO: Remove when #980 has been merged
|
||||
info.update(info['formats'][-1])
|
||||
|
||||
return info
|
||||
|
||||
def _get_videos_info(self, uri):
|
||||
video_id = self._id_from_uri(uri)
|
||||
data = compat_urllib_parse.urlencode({'uri': uri})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue