From e5a97a3c334b28e7da1866ffe188792ff8a36e8e Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 15 Mar 2017 17:06:24 -0700 Subject: [PATCH] Fix command_matches_re not being case insensitive --- disco/bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/bot/bot.py b/disco/bot/bot.py index ce8b4f3..7693f50 100644 --- a/disco/bot/bot.py +++ b/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