also return cinematographer and editor

This commit is contained in:
j 2009-06-01 15:16:12 +02:00
parent bf3e51df23
commit 10e9f54153
1 changed files with 2 additions and 0 deletions

View File

@ -652,6 +652,8 @@ class IMDb:
credits['director'] = getNames(raw_credits.get('directors', ''))
credits['writer'] = getNames(raw_credits.get('writers', ''))
credits['producer'] = getNames(raw_credits.get('producers', ''))
credits['cinematographer'] = getNames(raw_credits.get('cinematographers', ''))
credits['editor'] = getNames(raw_credits.get('editors', ''))
credits['cast'] = [(stripTags(decodeHtml(c[0])),stripTags(decodeHtml(c[1]))) for c in raw_credits.get('cast', [])]
self.credits = credits