From 5ac746750ea6d299adb88938452c92d6c998936f Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Fri, 24 Jul 2015 22:49:15 -0500 Subject: [PATCH] Fix log error --- resources/lib/WriteKodiVideoDB.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/lib/WriteKodiVideoDB.py b/resources/lib/WriteKodiVideoDB.py index c1205e42..a9c1a740 100644 --- a/resources/lib/WriteKodiVideoDB.py +++ b/resources/lib/WriteKodiVideoDB.py @@ -78,7 +78,7 @@ class WriteKodiVideoDB(): MBitem = ReadEmbyDB().getFullItem(embyId) if not MBitem: - self.logMsg("ADD movie to Kodi library FAILED", "Item %s not found on server!" % embyId) + self.logMsg("ADD movie to Kodi library FAILED, Item %s not found on server!" % embyId) return # If the item already exist in the local Kodi DB we'll perform a full item update @@ -280,7 +280,7 @@ class WriteKodiVideoDB(): MBitem = ReadEmbyDB().getFullItem(embyId) if not MBitem: - self.logMsg("ADD musicvideo to Kodi library FAILED", "Item %s not found on server!" % embyId, 1) + self.logMsg("ADD musicvideo to Kodi library FAILED, Item %s not found on server!" % embyId, 1) return # If the item already exist in the local Kodi DB we'll perform a full item update @@ -415,7 +415,7 @@ class WriteKodiVideoDB(): MBitem = ReadEmbyDB().getFullItem(embyId) if not MBitem: - self.logMsg("ADD tvshow to Kodi library FAILED", "Item %s not found on server!" % embyId) + self.logMsg("ADD tvshow to Kodi library FAILED, Item %s not found on server!" % embyId) return # If the item already exist in the local Kodi DB we'll perform a full item update