From 9c526e219fa6d3437946d862934fd415b8a61417 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 13 Sep 2015 00:48:41 -0500 Subject: [PATCH] Bugfix. --- earwigbot/irc/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/irc/data.py b/earwigbot/irc/data.py index 928ff3b..cf4d025 100644 --- a/earwigbot/irc/data.py +++ b/earwigbot/irc/data.py @@ -108,7 +108,7 @@ class Data(object): # e.g. "!command>user arg1 arg2" if ">" in self.command: command_uc, self._reply_nick = command_uc.split(">", 1) - self._command = command_uc + self._command = command_uc.lower() # e.g. "!command >user arg1 arg2" if self.args and self.args[0].startswith(">"):