From 5f212e3a3c57688340746cff752deb9f41922f50 Mon Sep 17 00:00:00 2001 From: "Dusty.P" Date: Sat, 14 Apr 2018 01:37:39 -0800 Subject: [PATCH] Fixed json typo --- geeksbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geeksbot.py b/geeksbot.py index 28ef503..92c96ff 100644 --- a/geeksbot.py +++ b/geeksbot.py @@ -50,7 +50,7 @@ class Geeksbot(commands.Bot): with open(f'{config_dir}{bot_config_file}') as file: self.bot_config = json.load(file) with open(f'{config_dir}{secrets_file}') as file: - self.bot_secrets = son.load(file) + self.bot_secrets = json.load(file) # with open(f'{config_dir}{profane_words_file}') as file: # self.profane_words = file.readlines() self.guild_config = {}