From 58390754241485bd4eaf5107c78ba1ffcd2ece2a Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Fri, 14 Dec 2018 04:31:26 -0600 Subject: [PATCH] Fix patch ugh sleep!! --- resources/lib/entrypoint/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/entrypoint/service.py b/resources/lib/entrypoint/service.py index 328b0d47..a60d2639 100644 --- a/resources/lib/entrypoint/service.py +++ b/resources/lib/entrypoint/service.py @@ -175,7 +175,7 @@ class Service(xbmc.Monitor): This pulls a dict that contains all the information for the build needed. ''' LOG.info("--[ check updates/%s ]", objects.version) - kodi = "DEV" if settings('devMode') else xbmc.getInfoLabel('System.BuildVersion') + kodi = "DEV" if settings('devMode.bool') else xbmc.getInfoLabel('System.BuildVersion') try: versions = requests.get('http://kodi.emby.media/Public%20testing/Dependencies/databases.json').json()