mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
use os.sep for path seperator
This commit is contained in:
parent
37f4f6b707
commit
83c438f8ff
1 changed files with 4 additions and 4 deletions
|
@ -49,12 +49,12 @@ def checkKodiSources():
|
||||||
tvLibrary = os.path.join(dataPath,'tvshows')
|
tvLibrary = os.path.join(dataPath,'tvshows')
|
||||||
|
|
||||||
rebootRequired = False
|
rebootRequired = False
|
||||||
if not xbmcvfs.exists(dataPath + "\\"):
|
if not xbmcvfs.exists(dataPath + os.sep):
|
||||||
xbmcvfs.mkdir(dataPath)
|
xbmcvfs.mkdir(dataPath)
|
||||||
if not xbmcvfs.exists(movieLibrary + "\\"):
|
if not xbmcvfs.exists(movieLibrary + os.sep):
|
||||||
xbmcvfs.mkdir(movieLibrary)
|
xbmcvfs.mkdir(movieLibrary)
|
||||||
rebootRequired = addKodiSource("mediabrowser_movies",movieLibrary,"movies")
|
rebootRequired = addKodiSource("mediabrowser_movies",movieLibrary,"movies")
|
||||||
if not xbmcvfs.exists(tvLibrary + "\\"):
|
if not xbmcvfs.exists(tvLibrary + os.sep):
|
||||||
xbmcvfs.mkdir(tvLibrary)
|
xbmcvfs.mkdir(tvLibrary)
|
||||||
rebootRequired = addKodiSource("mediabrowser_tvshows",tvLibrary,"tvshows")
|
rebootRequired = addKodiSource("mediabrowser_tvshows",tvLibrary,"tvshows")
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ def addKodiSource(name, path, type):
|
||||||
pathId = cursor.fetchone()[0]
|
pathId = cursor.fetchone()[0]
|
||||||
pathId = pathId + 1
|
pathId = pathId + 1
|
||||||
pathsql="insert into path(idPath, strPath, strContent, strScraper, strHash, scanRecursive) values(?, ?, ?, ?, ?, ?)"
|
pathsql="insert into path(idPath, strPath, strContent, strScraper, strHash, scanRecursive) values(?, ?, ?, ?, ?, ?)"
|
||||||
cursor.execute(pathsql, (pathId,path + "\\",type,"metadata.local",None,2147483647))
|
cursor.execute(pathsql, (pathId,path + os.sep,type,"metadata.local",None,2147483647))
|
||||||
connection.commit()
|
connection.commit()
|
||||||
cursor.close()
|
cursor.close()
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in a new issue