From 64b1d812cdd407f859673652df3d0c81b43c644a Mon Sep 17 00:00:00 2001 From: Charlie Date: Sun, 1 Feb 2026 21:15:04 +1300 Subject: [PATCH] Add test to see if the config is loading at all in the right dir --- bot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot.py b/bot.py index 06fee17..8d8d111 100644 --- a/bot.py +++ b/bot.py @@ -14,6 +14,7 @@ def load_config(): base_path = os.path.dirname(__file__) config_path = os.path.join(base_path, "config.toml") try: + print(f"Loading config from: {config_path}") with open(config_path, "rb") as f: return tomllib.load(f) except FileNotFoundError: