mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-23 02:24:12 +01:00
Now we can sort names independent of case!
This commit is contained in:
parent
8b9f5a607f
commit
e3b09746c0
@ -284,6 +284,8 @@ class Relay(callbacks.Privmsg, plugins.Configurable):
|
||||
the channel itself. Returns the nicks of the people in the channel on
|
||||
the various networks the bot is connected to.
|
||||
"""
|
||||
def comp(x, y):
|
||||
return cmp(x.lower(), y.lower())
|
||||
if not self.started:
|
||||
irc.error(msg, 'You must use the start command first.')
|
||||
return
|
||||
@ -320,10 +322,10 @@ class Relay(callbacks.Privmsg, plugins.Configurable):
|
||||
voices.append('+%s' % s)
|
||||
else:
|
||||
usersS.append(s)
|
||||
ops.sort()
|
||||
voices.sort()
|
||||
usersS.sort()
|
||||
halfops.sort()
|
||||
ops.sort(comp)
|
||||
voices.sort(comp)
|
||||
usersS.sort(comp)
|
||||
halfops.sort(comp)
|
||||
usersS = ', '.join(ifilter(None, imap(', '.join,
|
||||
(ops,halfops,voices,usersS))))
|
||||
users.append('%s: %s' % (ircutils.bold(abbreviation), usersS))
|
||||
|
Loading…
Reference in New Issue
Block a user