Fixed bug #715340, nested commands not parsed correctly.

This commit is contained in:
Jeremy Fincher 2003-04-06 10:36:31 +00:00
parent 9c78731123
commit 83dd73a643

View File

@ -355,7 +355,7 @@ class Privmsg(irclib.IrcCallback):
# catches them and does The Right Thing.
f(irc, msg, args)
_r = re.compile(r'^(\S+)')
_r = re.compile(r'^(\w+)')
def doPrivmsg(self, irc, msg):
s = addressed(irc.nick, msg)
#debug.printf('Privmsg.doPrivmsg: s == %r' % s)