From c25e34ebc3070714095a0e453181309e7eddd5cf Mon Sep 17 00:00:00 2001 From: Austen Adler Date: Mon, 30 Oct 2017 10:38:57 -0400 Subject: [PATCH] Fix small config load issue with bot owners --- telematrix/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telematrix/__init__.py b/telematrix/__init__.py index 9f2d1cc..5e313d9 100644 --- a/telematrix/__init__.py +++ b/telematrix/__init__.py @@ -39,7 +39,7 @@ try: MATRIX_HOST_BARE = CONFIG['hosts']['bare'] try: - MATRIX_BOT_OWNERS = CONFIG['bot-owners'] + MATRIX_BOT_OWNERS = CONFIG['bot_owners'] except KeyError: MATRIX_BOT_OWNERS = {}