1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 11:39:28 +00:00

[roosterteeth] Fixed syntax "if in" for Python 2.6.9

This commit is contained in:
Felix Stupp 2020-05-17 13:46:53 +02:00
parent 4438917048
commit 03ccfc4983
No known key found for this signature in database
GPG key ID: 93E1BD26F6B02FB7

View file

@ -122,7 +122,7 @@ class RoosterTeethIE(InfoExtractor):
thumbnails = []
for image in episode.get('included', {}).get('images', []):
if image.get('type') in {'episode_image', 'bonus_feature_image'}:
if image.get('type') in ('episode_image', 'bonus_feature_image'):
img_attributes = image.get('attributes') or {}
for k in ('thumb', 'small', 'medium', 'large'):
img_url = img_attributes.get(k)