From 10e9f5415381bc580bf180292af22c434496fd28 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 1 Jun 2009 15:16:12 +0200 Subject: [PATCH] also return cinematographer and editor --- oxweb/imdb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oxweb/imdb.py b/oxweb/imdb.py index dcc30e0..295150a 100644 --- a/oxweb/imdb.py +++ b/oxweb/imdb.py @@ -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