From 008dcda98fc46a8442123e22f154af213860e2f8 Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 12 Oct 2014 00:52:49 -0700 Subject: [PATCH] Add alias to remind --- pyircbot/modules/Remind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyircbot/modules/Remind.py b/pyircbot/modules/Remind.py index bb31c3d..429d57f 100644 --- a/pyircbot/modules/Remind.py +++ b/pyircbot/modules/Remind.py @@ -113,7 +113,7 @@ class Remind(ModuleBase): replyTo = prefixObj.nick if not "#" in args[0] else args[0] # Lots of code borrowed from https://github.com/embolalia/willie/blob/master/willie/modules/remind.py - cmd = self.bot.messageHasCommand(".at", trailing, True) + cmd = self.bot.messageHasCommand([".at", ".remind"], trailing, True) if cmd: regex = re.compile(r'(\d+):(\d+)(?::(\d+))?([^\s\d]+)? (.*)') match = regex.match(cmd.args_str)