Skip to content
This repository has been archived by the owner on Sep 28, 2021. It is now read-only.

fixes chat_ids index in settings.py #47

Merged
merged 1 commit into from
May 31, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down