aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/fivetv.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/fivetv.py')
-rw-r--r--hypervideo_dl/extractor/fivetv.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/hypervideo_dl/extractor/fivetv.py b/hypervideo_dl/extractor/fivetv.py
index d6bebd1..1f48cfd 100644
--- a/hypervideo_dl/extractor/fivetv.py
+++ b/hypervideo_dl/extractor/fivetv.py
@@ -1,7 +1,3 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-
from .common import InfoExtractor
from ..utils import int_or_none
@@ -75,7 +71,7 @@ class FiveTVIE(InfoExtractor):
r'<a[^>]+?href="([^"]+)"[^>]+?class="videoplayer"'],
webpage, 'video url')
- title = self._og_search_title(webpage, default=None) or self._html_extract_title(webpage)
+ title = self._generic_title('', webpage)
duration = int_or_none(self._og_search_property(
'video:duration', webpage, 'duration', default=None))