From 8c108add388dc6f7da3af82755da9b256ad60132 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Wed, 8 Apr 2015 00:44:38 +0200 Subject: [PATCH] fixed typo --- resources/lib/WriteKodiDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/WriteKodiDB.py b/resources/lib/WriteKodiDB.py index 0983fed1..cba3a842 100644 --- a/resources/lib/WriteKodiDB.py +++ b/resources/lib/WriteKodiDB.py @@ -80,7 +80,7 @@ class WriteKodiDB(): self.getPropertyParamArray_Batched(KodiItem, "tag", MBitem.get("Tag"), params) if MBitem.get("CommunityRating") != None: - self.getPropertyParam_Batched(KodiItem, "rating", int(MBitem.get(CommunityRating))/10, params) + self.getPropertyParam_Batched(KodiItem, "rating", int(MBitem.get("CommunityRating"))/10, params) #self.getPropertyParam_Batched(KodiItem, "plot", MBitem.get("Overview"), params) self.getPropertyParam_Batched(KodiItem, "plotoutline", MBitem.get("ShortOverview"), params)