more creators

This commit is contained in:
j 2022-04-18 23:23:01 +01:00
parent d9870232cb
commit a1a3de685c

View file

@ -535,6 +535,8 @@ class Imdb(SiteParser):
for c in self.get('credits', []):
if '(created by)' in c['roles'] and c['name'] not in creator:
creator.append(c['name'])
if '(creator)' in c['roles'] and c['name'] not in creator:
creator.append(c['name'])
if creator:
self['creator'] = creator