mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Fixed globbing in User.list.
This commit is contained in:
parent
747b8f483f
commit
f68ce97d97
@ -76,8 +76,8 @@ class User(callbacks.Privmsg):
|
|||||||
if '*' not in glob and '?' not in glob:
|
if '*' not in glob and '?' not in glob:
|
||||||
glob = '*%s*' % glob
|
glob = '*%s*' % glob
|
||||||
r = re.compile(fnmatch.translate(glob), re.I)
|
r = re.compile(fnmatch.translate(glob), re.I)
|
||||||
def p(s):
|
def p(u):
|
||||||
return r.match(s) is not None
|
return r.match(u.name) is not None
|
||||||
predicates.append(p)
|
predicates.append(p)
|
||||||
users = []
|
users = []
|
||||||
for u in ircdb.users.itervalues():
|
for u in ircdb.users.itervalues():
|
||||||
|
Loading…
Reference in New Issue
Block a user