Fixed the unallowed dashes and underscores in command names.

This commit is contained in:
Jeremy Fincher 2003-04-09 16:55:25 +00:00
parent c849eda6ce
commit 091f2872b3

View File

@ -364,7 +364,7 @@ class Privmsg(irclib.IrcCallback):
funcname = f.im_func.func_name
debug.msg('%s took %s seconds' % (funcname, elapsed), 'verbose')
_r = re.compile(r'^(\w+)')
_r = re.compile(r'^([\w-_]+)')
def doPrivmsg(self, irc, msg):
s = addressed(irc.nick, msg)
#debug.printf('Privmsg.doPrivmsg: s == %r' % s)