Browse Source

Update disco/bot/bot.py

Co-Authored-By: Andrei Zbikowski <[email protected]>
pull/146/head
Luke Mathew-Byrne 6 years ago
committed by GitHub
parent
commit
880e86dc3b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      disco/bot/bot.py

2
disco/bot/bot.py

@ -189,7 +189,7 @@ class Bot(LoggingClass):
# Convert our configured mapping of entities to levels into something
# we can actually use. This ensures IDs are converted properly, and maps
# any level names (e.g. `role_id: admin`) map to their numerical values.
for entity_id, level in six.iteritems(self.config.levels.copy()):
for entity_id, level in list(six.iteritems(self.config.levels)):
del self.config.levels[entity_id]
entity_id = int(entity_id) if str(entity_id).isdigit() else entity_id
level = int(level) if str(level).isdigit() else get_enum_value_by_name(CommandLevels, level)

Loading…
Cancel
Save