From bae4c6a165e068a6f73c62f5cb186c2e231fb733 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Mon, 5 Jul 2010 10:38:53 +0200 Subject: [PATCH] fix public poster width/height names --- pandora/backend/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora/backend/models.py b/pandora/backend/models.py index 59547444..6a1f5c61 100644 --- a/pandora/backend/models.py +++ b/pandora/backend/models.py @@ -375,8 +375,8 @@ class Movie(models.Model): 'votes': 'votes', 'alternative_titles': 'alternative_titles', 'connections_json': 'connections', - 'posterWidth': 'poster_width', - 'posterHeight': 'poster_height' + 'poster_width': 'posterWidth', + 'poster_height': 'posterHeight' } def get_json(self, fields=None): movie = {}