fixed small typo in logging

This commit is contained in:
Marcel van der Veldt 2015-04-08 11:22:59 +02:00
parent c31b5ecebe
commit 7ac2704989

View file

@ -951,9 +951,9 @@ class WriteKodiDB():
try:
connection.commit()
utils.logMsg("Emby","Added TV Show to Kodi Library" + MBitem["Id"] + " - " + MBitem["Name"])
utils.logMsg("Emby","Added episode to Kodi Library - ID: " + MBitem["Id"] + " - " + MBitem["Name"])
except:
utils.logMsg("Emby","Error adding tvshow to Kodi Library" + MBitem["Id"] + " - " + MBitem["Name"])
utils.logMsg("Emby","Error adding episode to Kodi Library - ID: " + MBitem["Id"] + " - " + MBitem["Name"])
actionPerformed = False
def deleteMovieFromKodiLibrary(self, id ):