From dc12f05ba823f7347ef95bec773dc55d1e000183 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Wed, 3 Feb 2016 16:43:29 -0600 Subject: [PATCH] Fix indentation Somehow using tabs rather than spaces --- resources/lib/playlist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lib/playlist.py b/resources/lib/playlist.py index e353f8e7..6b4c1e54 100644 --- a/resources/lib/playlist.py +++ b/resources/lib/playlist.py @@ -62,7 +62,7 @@ class Playlist(): mediatype = embydb_item[4] except TypeError: # Item is not found in our database, add item manually - self.logMsg("Item was not found in the database, manually adding item.", 1) + self.logMsg("Item was not found in the database, manually adding item.", 1) item = self.emby.getItem(itemid) self.addtoPlaylist_xbmc(playlist, item) else: @@ -79,7 +79,7 @@ class Playlist(): # Seek to the starting position seektime = startat / 10000000.0 player.seekTime(seektime) - self.logMsg("Seeking to: %s" % seektime, 1) + self.logMsg("Seeking to: %s" % seektime, 1) self.verifyPlaylist() embycursor.close()