From fce9a077be80ea390313df008b699172cc82872c Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Sat, 1 Oct 2022 03:12:53 +0300 Subject: [PATCH] Fix illogic import in helper_startup --- src/helper_startup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/helper_startup.py b/src/helper_startup.py index e4c3c169..bd66b1dc 100644 --- a/src/helper_startup.py +++ b/src/helper_startup.py @@ -19,10 +19,9 @@ try: import paths import state from bmconfigparser import config, config_ready - except ImportError: from . import defaults, helper_random, paths, state - from bmconfigparser import config, config_ready + from .bmconfigparser import config, config_ready try: from plugins.plugin import get_plugin