aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/keezmovies.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/keezmovies.py')
-rw-r--r--hypervideo_dl/extractor/keezmovies.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/hypervideo_dl/extractor/keezmovies.py b/hypervideo_dl/extractor/keezmovies.py
index 06dbcbb..b50da42 100644
--- a/hypervideo_dl/extractor/keezmovies.py
+++ b/hypervideo_dl/extractor/keezmovies.py
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
import re
from .common import InfoExtractor
@@ -7,7 +5,6 @@ from ..aes import aes_decrypt_text
from ..compat import compat_urllib_parse_unquote
from ..utils import (
determine_ext,
- ExtractorError,
format_field,
int_or_none,
str_to_int,
@@ -70,7 +67,7 @@ class KeezMoviesIE(InfoExtractor):
video_url, title, 32).decode('utf-8')
formats.append({
'url': format_url,
- 'format_id': format_field(height, template='%dp'),
+ 'format_id': format_field(height, None, '%dp'),
'height': height,
'tbr': tbr,
})
@@ -105,12 +102,6 @@ class KeezMoviesIE(InfoExtractor):
self.raise_no_formats(
'Video %s is no longer available' % video_id, expected=True)
- try:
- self._sort_formats(formats)
- except ExtractorError:
- if fatal:
- raise
-
if not title:
title = self._html_search_regex(
r'<h1[^>]*>([^<]+)', webpage, 'title')