mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Fixed stupid regexp.
This commit is contained in:
parent
1bc77baebe
commit
59b6a7b67d
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user