From 0ee8150d935e340584507dff395a82af778f9246 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sun, 9 Oct 2016 20:00:46 -0500 Subject: [PATCH] Storage enabled by default, plugins should be a list --- disco/bot/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disco/bot/bot.py b/disco/bot/bot.py index 1d14a91..d5751cd 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -64,7 +64,7 @@ class BotConfig(Config): The directory plugin configuration is located within. """ levels = {} - plugins = {} + plugins = [] commands_enabled = True commands_require_mention = True @@ -83,7 +83,7 @@ class BotConfig(Config): plugin_config_format = 'yaml' plugin_config_dir = 'config' - storage_enabled = False + storage_enabled = True storage_provider = 'memory' storage_config = {}