Small change in order of sortBy and shrinkList.

This commit is contained in:
Jeremy Fincher 2003-09-03 14:26:25 +00:00
parent c98a25d6a2
commit 1da0f301f5
1 changed files with 1 additions and 1 deletions

View File

@ -810,12 +810,12 @@ class FunCommands(callbacks.Privmsg):
irc.reply(msg, 'No definition for %r could be found.' % word)
return
L = []
utils.sortBy(lambda d: len(d.getdefstr()), definitions)
for d in definitions:
(db, s) = (d.getdb().getname(), d.getdefstr())
db = ircutils.bold(db)
s = utils.normalizeWhitespace(s).rstrip(';.,')
L.append('%s: %s' % (db, s))
utils.sortBy(len, L)
ircutils.shrinkList(L, '; ')
if not L:
irc.reply(msg, 'No definitions small enough to fit into an IRC ' \