From 952e94496dead68e0952add4577a5a64f91a6512 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Thu, 18 Oct 2018 07:07:14 -0500 Subject: [PATCH] Fix loading if special char in path --- service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.py b/service.py index 1cc0588a..0cc7aacc 100644 --- a/service.py +++ b/service.py @@ -20,7 +20,7 @@ __cache__ = xbmc.translatePath('special://temp/emby').decode('utf-8') if not xbmcvfs.exists(__pcache__ + '/'): from resources.lib.helper.utils import copytree - copytree(os.path.join(__base__, 'objects').decode('utf-8'), os.path.join(__pcache__, 'objects').decode('utf-8')) + copytree(os.path.join(__base__, 'objects'), os.path.join(__pcache__, 'objects')) sys.path.insert(0, __cache__) sys.path.insert(0, __pcache__)