aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/utreon.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/utreon.py')
-rw-r--r--hypervideo_dl/extractor/utreon.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/hypervideo_dl/extractor/utreon.py b/hypervideo_dl/extractor/utreon.py
index 4986635..90c10c0 100644
--- a/hypervideo_dl/extractor/utreon.py
+++ b/hypervideo_dl/extractor/utreon.py
@@ -1,6 +1,3 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
from .common import InfoExtractor
from ..utils import (
dict_get,
@@ -71,7 +68,6 @@ class UtreonIE(InfoExtractor):
'format_id': format_key.split('_')[1],
'height': int(format_key.split('_')[1][:-1]),
} for format_key, format_url in videos_json.items() if url_or_none(format_url)]
- self._sort_formats(formats)
thumbnail = url_or_none(dict_get(json_data, ('cover_image_url', 'preview_image_url')))
return {
'id': video_id,