From 37f4f6b70734648dad764db5af570878e3dc5a76 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Sat, 14 Mar 2015 19:55:04 +0100 Subject: [PATCH] fixed one more issue in utils.. file exists in python needs a trailing slash behind directory names --- resources/lib/Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/Utils.py b/resources/lib/Utils.py index 39e4b60d..620d2fd9 100644 --- a/resources/lib/Utils.py +++ b/resources/lib/Utils.py @@ -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')