Fix indentation

Somehow using tabs rather than spaces
This commit is contained in:
angelblue05 2016-02-03 16:43:29 -06:00
parent 823c5f28b1
commit dc12f05ba8
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ class Playlist():
mediatype = embydb_item[4] mediatype = embydb_item[4]
except TypeError: except TypeError:
# Item is not found in our database, add item manually # 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) item = self.emby.getItem(itemid)
self.addtoPlaylist_xbmc(playlist, item) self.addtoPlaylist_xbmc(playlist, item)
else: else:
@ -79,7 +79,7 @@ class Playlist():
# Seek to the starting position # Seek to the starting position
seektime = startat / 10000000.0 seektime = startat / 10000000.0
player.seekTime(seektime) player.seekTime(seektime)
self.logMsg("Seeking to: %s" % seektime, 1) self.logMsg("Seeking to: %s" % seektime, 1)
self.verifyPlaylist() self.verifyPlaylist()
embycursor.close() embycursor.close()