From 7bff1e658431a0a8ad7c2b748fe2b0a4a8b9a97e Mon Sep 17 00:00:00 2001 From: aeph6Ee0 Date: Mon, 10 Apr 2017 23:20:34 +0200 Subject: [PATCH] [GameStar] fix comment_count extraction --- youtube_dl/extractor/gamestar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl/extractor/gamestar.py b/youtube_dl/extractor/gamestar.py index 5c412c4d8..1c729850d 100644 --- a/youtube_dl/extractor/gamestar.py +++ b/youtube_dl/extractor/gamestar.py @@ -55,8 +55,8 @@ class GameStarIE(InfoExtractor): view_count = json_ld.get('interactionCount') comment_count = int_or_none(self._html_search_regex( - r'([0-9]+) Kommentare', webpage, 'comment_count', - fatal=False)) + r'([0-9]+)', + webpage, 'comment_count', fatal=False)) info_dict.update({ 'id': video_id,