mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
fixed one more issue in utils..
file exists in python needs a trailing slash behind directory names
This commit is contained in:
parent
3c8db3fe94
commit
37f4f6b707
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ def logMsg(title, msg, level = 1):
|
|||
def checkKodiSources():
|
||||
addon = xbmcaddon.Addon(id='plugin.video.mb3sync')
|
||||
addondir = xbmc.translatePath( addon.getAddonInfo('profile') )
|
||||
dataPath = os.path.join(addondir,"library\\")
|
||||
dataPath = os.path.join(addondir,"library")
|
||||
movieLibrary = os.path.join(dataPath,'movies')
|
||||
tvLibrary = os.path.join(dataPath,'tvshows')
|
||||
|
||||
|
|
Loading…
Reference in a new issue