Remove the compatibility code used before the new format system was implemented

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-12-03 14:21:06 +01:00
parent ce93879a9b
commit fb7abb31af
12 changed files with 15 additions and 67 deletions

View file

@ -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})