Skip to content

Commit

Permalink
Fix typo in tmdb3.py that returns invalid crew IDs.
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerrp committed Dec 30, 2012
1 parent 0bffe06 commit f4bb17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/scripts/metadata/Movie/tmdb3.py
Expand Up @@ -76,7 +76,7 @@ def buildSingle(inetref, opts):
m.people.append(d)
for crew in movie.crew:
d = {'name':crew.name, 'job':crew.job, 'department':crew.department,
'url':'http://www.themoviedb.org/people/{0}'.format(cast.id)}
'url':'http://www.themoviedb.org/people/{0}'.format(crew.id)}
if crew.profile: d['thumb'] = crew.profile.geturl()
m.people.append(d)
for backdrop in movie.backdrops:
Expand Down

0 comments on commit f4bb17f

Please sign in to comment.