From 2117d660a232762bb31d242b39b93dfcf77d5408 Mon Sep 17 00:00:00 2001 From: James Vega Date: Mon, 20 Oct 2003 17:20:41 +0000 Subject: [PATCH] Dropped an extraneous paren --- plugins/Infobot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Infobot.py b/plugins/Infobot.py index 4dc6a8423..04c69c726 100755 --- a/plugins/Infobot.py +++ b/plugins/Infobot.py @@ -128,7 +128,7 @@ class Infobot(callbacks.PrivmsgRegexp): irc.reply(msg, self.getRandomSaying('confirms')) def tell(self, irc, msg, match): - r"^tell\s+(.+?)\s+about\s+(.+?)(?!\?+)[.! ]*)$" + r"^tell\s+(.+?)\s+about\s+(.+?)(?!\?+)[.! ]*$" (nick, key) = match.groups() try: s = '%s wants you to know that %s' %(msg.nick,self.getFactoid(key))