From 151c679e294157750200bb569cc448016d935d96 Mon Sep 17 00:00:00 2001 From: Croneter Date: Tue, 1 May 2018 15:13:42 +0200 Subject: [PATCH] Fix WindowsError for WatchDog trying to monitor playlists --- resources/lib/variables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/variables.py b/resources/lib/variables.py index 0f89ef08..7ad811d2 100644 --- a/resources/lib/variables.py +++ b/resources/lib/variables.py @@ -124,7 +124,7 @@ EXTERNAL_SUBTITLE_TEMP_PATH = try_decode(xbmc.translatePath( PLEX_TO_KODI_TIMEFACTOR = 1.0 / 1000.0 # Playlist stuff -PLAYLIST_PATH = os.path.join(KODI_PROFILE, 'playlist') +PLAYLIST_PATH = os.path.join(KODI_PROFILE, 'playlists') PLAYLIST_PATH_MIXED = os.path.join(PLAYLIST_PATH, 'mixed') PLAYLIST_PATH_VIDEO = os.path.join(PLAYLIST_PATH, 'video') PLAYLIST_PATH_MUSIC = os.path.join(PLAYLIST_PATH, 'music')