From fb9da520c4f3cf64f95dc61664531cec836a75cd Mon Sep 17 00:00:00 2001 From: Peter Pauly Date: Sun, 30 May 2021 21:17:28 +0200 Subject: [PATCH] fixes chat_ids index in settings.py --- src/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings.py b/src/settings.py index 8cb42d0..457226e 100644 --- a/src/settings.py +++ b/src/settings.py @@ -60,7 +60,7 @@ try: if SEND_TELEGRAM_MSG: TOKEN = config["TELEGRAM"]["token"] - CHAT_IDS = config["TELEGRAM"]["chat_id"].split(',') + CHAT_IDS = config["TELEGRAM"]["chat_ids"].split(',') except KeyError as e: log.warning( f"[TELEGRAM] '{e}' is missing in Config. Set Telegram to False")