few small fixes for bugs in test mysql code

This commit is contained in:
shaun 2015-03-27 11:15:22 +11:00
parent cb8df35a1e
commit 95a5665ad0
1 changed files with 14 additions and 16 deletions

View File

@ -84,10 +84,10 @@ def checkKodiSources():
return True
def KodiSQL():
if xbmc.getinfolabel("System.BuildVersion").startswith("13"):
if xbmc.getInfoLabel("System.BuildVersion").startswith("13"):
#gotham
dbVersion = "78"
if xbmc.getinfolabel("System.BuildVersion").startswith("15"):
if xbmc.getInfoLabel("System.BuildVersion").startswith("15"):
#isengard
dbVersion = "91"
else:
@ -142,7 +142,7 @@ def addKodiSource(name, path, type):
error = False
if xbmcvfs.exists(dbPath):
try:
connection = KodiSQL()
cursor = connection.cursor( )
@ -155,8 +155,6 @@ def addKodiSource(name, path, type):
cursor.close()
except:
error = True
else:
error = True
# add it to sources.xml
sourcesFile = xbmc.translatePath( "special://profile/sources.xml" )