diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-10 19:52:49 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-11 00:51:26 +0530 |
commit | 93240fc1848de4a94f25844c96e0dcd282ef1d3b (patch) | |
tree | 0008ef502170dfeec7a81181345c8b0942d1efa1 /yt_dlp/extractor/gamejolt.py | |
parent | 47ab66db0f083a76c7fba0f6e136b21dd5a93e3b (diff) |
[cleanup] Fix misc bugs (#8968)
Closes #8816
Authored by: bashonly, seproDev, pukkandan, Grub4k
Diffstat (limited to 'yt_dlp/extractor/gamejolt.py')
-rw-r--r-- | yt_dlp/extractor/gamejolt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/gamejolt.py b/yt_dlp/extractor/gamejolt.py index 4d57391ac..1d3c0b110 100644 --- a/yt_dlp/extractor/gamejolt.py +++ b/yt_dlp/extractor/gamejolt.py @@ -88,7 +88,7 @@ class GameJoltBaseIE(InfoExtractor): 'uploader_id': user_data.get('username'), 'uploader_url': format_field(user_data, 'url', 'https://gamejolt.com%s'), 'categories': [try_get(category, lambda x: '%s - %s' % (x['community']['name'], x['channel'].get('display_title') or x['channel']['title'])) - for category in post_data.get('communities' or [])], + for category in post_data.get('communities') or []], 'tags': traverse_obj( lead_content, ('content', ..., 'content', ..., 'marks', ..., 'attrs', 'tag'), expected_type=str_or_none), 'like_count': int_or_none(post_data.get('like_count')), |