Browse Source

Fix IDs being strings on `bot.levels` setting. (#93)

Now, numeric IDs on said configuration are converted to ints, regardless
of the configuration format.
pull/94/head
Raphael Nepomuceno 7 years ago
committed by Andrei Zbikowski
parent
commit
e6563df50c
  1. 4
      disco/bot/bot.py

4
disco/bot/bot.py

@ -186,8 +186,8 @@ class Bot(LoggingClass):
self.add_plugin_module(plugin_mod)
# Convert level mapping
for k, v in six.iteritems(self.config.levels):
self.config.levels[k] = CommandLevels.get(v)
for k, v in list(six.iteritems(self.config.levels)):
self.config.levels[int(k) if k.isdigit() else k] = CommandLevels.get(v)
@classmethod
def from_cli(cls, *plugins):

Loading…
Cancel
Save