more decodeHtml

This commit is contained in:
j 2008-06-16 14:07:45 +02:00
parent 23656cde3e
commit 5cdd4ed63b
1 changed files with 1 additions and 1 deletions

View File

@ -619,7 +619,7 @@ class IMDb:
credits['director'] = getNames(raw_credits.get('directors', ''))
credits['writer'] = getNames(raw_credits.get('writers', ''))
credits['producer'] = getNames(raw_credits.get('producers', ''))
credits['cast'] = [(stripTags(c[0]),stripTags(c[1])) for c in raw_credits.get('cast', [])]
credits['cast'] = [(stripTags(decodeHtml(c[0])),stripTags(decodeHtml(c[1]))) for c in raw_credits.get('cast', [])]
self.credits = credits
return self.credits