mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
Do sorting the right way (not only are cmp functions slow, but with nicks you need to sort by ircutils.toLower, not str.lower).
This commit is contained in:
parent
c283ca73de
commit
0ab9d4e3ec
@ -284,8 +284,6 @@ 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
|
||||
@ -322,10 +320,10 @@ class Relay(callbacks.Privmsg, plugins.Configurable):
|
||||
voices.append('+%s' % s)
|
||||
else:
|
||||
usersS.append(s)
|
||||
ops.sort(comp)
|
||||
voices.sort(comp)
|
||||
usersS.sort(comp)
|
||||
halfops.sort(comp)
|
||||
utils.sortBy(ircutils.toLower, ops)
|
||||
utils.sortBy(ircutils.toLower, voices)
|
||||
utils.sortBy(ircutils.toLower, halfops)
|
||||
utils.sortBy(ircutils.toLower, usersS)
|
||||
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