more creators
This commit is contained in:
parent
d9870232cb
commit
a1a3de685c
1 changed files with 2 additions and 0 deletions
|
@ -535,6 +535,8 @@ class Imdb(SiteParser):
|
||||||
for c in self.get('credits', []):
|
for c in self.get('credits', []):
|
||||||
if '(created by)' in c['roles'] and c['name'] not in creator:
|
if '(created by)' in c['roles'] and c['name'] not in creator:
|
||||||
creator.append(c['name'])
|
creator.append(c['name'])
|
||||||
|
if '(creator)' in c['roles'] and c['name'] not in creator:
|
||||||
|
creator.append(c['name'])
|
||||||
if creator:
|
if creator:
|
||||||
self['creator'] = creator
|
self['creator'] = creator
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue