diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-07 12:11:05 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-07 17:22:45 +0530 |
commit | c76eb41bb9e7e0a106ce44f4afcf74b0c00a3fb2 (patch) | |
tree | ed835b466e6350eef3960198a8569f946a79bac0 /youtube_dlc/extractor/twitch.py | |
parent | dbbbe555d7a64ff65de5f8a78cc276a848c2e227 (diff) |
Preparing for release
Diffstat (limited to 'youtube_dlc/extractor/twitch.py')
-rw-r--r-- | youtube_dlc/extractor/twitch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/twitch.py b/youtube_dlc/extractor/twitch.py index 34892d69d..ab131a07d 100644 --- a/youtube_dlc/extractor/twitch.py +++ b/youtube_dlc/extractor/twitch.py @@ -324,7 +324,7 @@ def _make_video_result(node): return { '_type': 'url_transparent', 'ie_key': TwitchVodIE.ie_key(), - 'id': 'v'+ video_id, + 'id': 'v' + video_id, 'url': 'https://www.twitch.tv/videos/%s' % video_id, 'title': node.get('title'), 'thumbnail': node.get('previewThumbnailURL'), |