diff options
Diffstat (limited to 'youtube_dl/extractor/firsttv.py')
| -rw-r--r-- | youtube_dl/extractor/firsttv.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/firsttv.py b/youtube_dl/extractor/firsttv.py index c2e987ff7..08ceee4ed 100644 --- a/youtube_dl/extractor/firsttv.py +++ b/youtube_dl/extractor/firsttv.py @@ -44,9 +44,9 @@ class FirstTVIE(InfoExtractor):          duration = self._og_search_property('video:duration', webpage, 'video duration', fatal=False)          like_count = self._html_search_regex(r'title="Понравилось".*?/></label> \[(\d+)\]', -            webpage, 'like count', fatal=False) +                                             webpage, 'like count', fatal=False)          dislike_count = self._html_search_regex(r'title="Не понравилось".*?/></label> \[(\d+)\]', -            webpage, 'dislike count', fatal=False) +                                                webpage, 'dislike count', fatal=False)          return {              'id': video_id, @@ -57,4 +57,4 @@ class FirstTVIE(InfoExtractor):              'duration': int_or_none(duration),              'like_count': int_or_none(like_count),              'dislike_count': int_or_none(dislike_count), -        }
\ No newline at end of file +        } | 
