Browse Source

Storage enabled by default, plugins should be a list

pull/5/head
Andrei 9 years ago
parent
commit
0ee8150d93
  1. 4
      disco/bot/bot.py

4
disco/bot/bot.py

@ -64,7 +64,7 @@ class BotConfig(Config):
The directory plugin configuration is located within. The directory plugin configuration is located within.
""" """
levels = {} levels = {}
plugins = {} plugins = []
commands_enabled = True commands_enabled = True
commands_require_mention = True commands_require_mention = True
@ -83,7 +83,7 @@ class BotConfig(Config):
plugin_config_format = 'yaml' plugin_config_format = 'yaml'
plugin_config_dir = 'config' plugin_config_dir = 'config'
storage_enabled = False storage_enabled = True
storage_provider = 'memory' storage_provider = 'memory'
storage_config = {} storage_config = {}

Loading…
Cancel
Save