Fixed re command.

This commit is contained in:
Jeremy Fincher 2003-04-11 21:19:28 +00:00
parent bd8de87438
commit fd43eeafb9
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Utilities(callbacks.Privmsg):
Returns all matches to <regexp> (in the form /regexp/flags) in text.
"""
(regexp, text) = privmsgs.getArgs(args, needed=2)
(_, regexp, flags) = re.split('/')
(_, regexp, flags) = regexp.split('/')
flag = 0
for c in flags:
flag &= getattr(re, c.upper())