From f7605802d3a2215633f8c3eed0c532da807f1781 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Tue, 28 Jul 2015 20:08:13 -0500 Subject: [PATCH] adjust log so users can understand there's no season number assigned. --- resources/lib/WriteKodiVideoDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/WriteKodiVideoDB.py b/resources/lib/WriteKodiVideoDB.py index a01f4541..90746d0f 100644 --- a/resources/lib/WriteKodiVideoDB.py +++ b/resources/lib/WriteKodiVideoDB.py @@ -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,))