adjust log

so users can understand there's no season number assigned.
This commit is contained in:
angelblue05 2015-07-28 20:08:13 -05:00
parent 32f239c2d8
commit f7605802d3

View file

@ -643,7 +643,7 @@ class WriteKodiVideoDB():
# Validate the season exists in Emby and in database
if season is None:
self.logMsg("SKIP adding episode to Kodi Library, no ParentIndexNumber - ID: %s - %s" % (embyId, title))
self.logMsg("SKIP adding episode to Kodi Library, no season assigned - ID: %s - %s" % (embyId, title))
return False
cursor.execute("SELECT idSeason FROM seasons WHERE idShow = ? and season = ?", (showid, season,))