From a8b7fbed39d9e04acfceadeee4c2da9159377b2a Mon Sep 17 00:00:00 2001 From: Steve Towner Date: Sat, 16 Jan 2021 11:08:23 -0600 Subject: [PATCH] Changed app name returned by plugin_start() to match the folder name suggested by EMDC to enable logging (for testing changes). --- load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/load.py b/load.py index 826d56c..6e47464 100644 --- a/load.py +++ b/load.py @@ -11,7 +11,7 @@ def plugin_start(plugin_dir): global spansh_router spansh_router = SpanshRouter(plugin_dir) spansh_router.check_for_update() - return 'spansh_router' + return 'SpanshRouter' def plugin_stop(): global spansh_router