Changed to use ircutils.shrinkList.

This commit is contained in:
Jeremy Fincher 2003-04-18 08:19:22 +00:00
parent 7fa59b0f35
commit c99f68894a
1 changed files with 3 additions and 3 deletions

View File

@ -227,11 +227,11 @@ class Notes(callbacks.Privmsg):
L.append(r'#%s from %s' % (id, sender))
else:
L.append(r'#%s (private)' % id)
while reduce(operator.add, map(len, L)) + 2*len(L) > 400:
L.pop()
more = True
if more:
shrinkList(L, ', ', 400)
L.append('and even more notes.')
else:
shrinkList(L, ', ', 450)
irc.reply(msg, ', '.join(L))