From c44d71b8b41783585e5c5fb759cc139e2c60019b Mon Sep 17 00:00:00 2001 From: Rob Weber Date: Mon, 19 Aug 2019 14:21:40 -0500 Subject: [PATCH] updated path --- 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 07f2551..f3d0993 100644 --- a/resources/lib/utils.py +++ b/resources/lib/utils.py @@ -18,7 +18,7 @@ def log(message,loglevel=xbmc.LOGNOTICE): xbmc.log(encode(__addon_id__ + "-" + __Addon.getAddonInfo('version') + ": " + message),level=loglevel) def showNotification(message): - xbmcgui.Dialog().notification(encode(getString(30010)),encode(message),time=4000,icon=xbmc.translatePath(__Addon.getAddonInfo('path') + "/icon.png")) + xbmcgui.Dialog().notification(encode(getString(30010)),encode(message),time=4000,icon=xbmc.translatePath(__Addon.getAddonInfo('path') + "/resources/media/icon.png")) def getSetting(name): return __Addon.getSetting(name)