Skip to content

Commit

Permalink
Fix string typecase
Browse files Browse the repository at this point in the history
  • Loading branch information
zim514 committed Apr 8, 2024
1 parent 18dc1f5 commit 5b4a07d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -480,5 +480,5 @@ msgid "ERROR: Light not found, it may have been deleted"
msgstr ""

msgctxt "#30028"
msgid "configure hue home location to use sunset time, defaulting to 19:00"
msgid "Configure Hue Home location to use Sunset time, defaulting to 19:00"
msgstr ""
4 changes: 2 additions & 2 deletions script.service.hue/resources/lib/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self, settings_monitor):
}

def handle_command(self, command, *args):
xbmc.log(f"[SCRIPT.SERVICE.HUE] Started with {command}")
xbmc.log(f"[SCRIPT.SERVICE.HUE] Started with {command}, Python: {sys.version}")
command_func = self.commands.get(command)

if command_func:
Expand Down Expand Up @@ -88,7 +88,7 @@ def __init__(self, settings_monitor):
cache_set("service_enabled", True)

def run(self):

xbmc.log(f"[SCRIPT.SERVICE.HUE] Starting Hue Service, Python: {sys.version}")
self.light_groups = self.initialize_light_groups()
self.timers = Timers(self.settings_monitor, self.bridge, self)

Expand Down

0 comments on commit 5b4a07d

Please sign in to comment.