summaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/gamestar.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/gamestar.py')
-rw-r--r--yt_dlp/extractor/gamestar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/gamestar.py b/yt_dlp/extractor/gamestar.py
index e9966f5..8e3b8a5 100644
--- a/yt_dlp/extractor/gamestar.py
+++ b/yt_dlp/extractor/gamestar.py
@@ -19,7 +19,7 @@ class GameStarIE(InfoExtractor):
'timestamp': 1406542380,
'upload_date': '20140728',
'duration': 17,
- }
+ },
}, {
'url': 'http://www.gamepro.de/videos/top-10-indie-spiele-fuer-nintendo-switch-video-tolle-nindies-games-zum-download,95316.html',
'only_matching': True,
@@ -42,7 +42,7 @@ class GameStarIE(InfoExtractor):
webpage, 'JSON-LD', group='json_ld'), video_id)
info_dict = self._json_ld(json_ld, video_id)
info_dict['title'] = remove_end(
- info_dict['title'], ' - Game%s' % site.title())
+ info_dict['title'], f' - Game{site.title()}')
view_count = int_or_none(json_ld.get('interactionCount'))
comment_count = int_or_none(self._html_search_regex(
@@ -54,7 +54,7 @@ class GameStarIE(InfoExtractor):
'url': 'http://gamestar.de/_misc/videos/portal/getVideoUrl.cfm?premium=0&videoId=' + video_id,
'ext': 'mp4',
'view_count': view_count,
- 'comment_count': comment_count
+ 'comment_count': comment_count,
})
return info_dict