Browse Source

Fix command_matches_re not being case insensitive

pull/21/head
Andrei 8 years ago
parent
commit
e5a97a3c33
  1. 2
      disco/bot/bot.py

2
disco/bot/bot.py

@ -225,7 +225,7 @@ class Bot(LoggingClass):
commands = list(self.commands)
re_str = '|'.join(command.regex for command in commands)
if re_str:
self.command_matches_re = re.compile(re_str)
self.command_matches_re = re.compile(re_str, re.I)
else:
self.command_matches_re = None

Loading…
Cancel
Save