From 71a797e3fa737c61eb0d577df55d188b0aa6084b Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 23 Feb 2017 09:02:21 -0600 Subject: [PATCH] countdown: add "about" to new reminder regex --- countdown/ircplugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/countdown/ircplugin.py b/countdown/ircplugin.py index 5229fd3..16c5c02 100644 --- a/countdown/ircplugin.py +++ b/countdown/ircplugin.py @@ -20,7 +20,7 @@ log = logging.getLogger('countdown.ircplugin') class Countdown(Plugin): """Report on countdown items.""" - new_reminder_regex = r'remind\s+([^\s]+)\s+(at|in|on)\s+(.*?)\s+(to|that)\s+(.*)' + new_reminder_regex = r'remind\s+([^\s]+)\s+(at|in|on)\s+(.*?)\s+(to|that|about)\s+(.*)' def __init__(self, bot, connection, event): """Initialize some stuff."""