Forgot the utils.

This commit is contained in:
Jeremy Fincher 2003-04-23 22:38:38 +00:00
parent 0cc386e7f7
commit 3620be1ed2

View File

@ -236,10 +236,10 @@ class Notes(callbacks.Privmsg):
else: else:
L.append(r'#%s (private)' % id) L.append(r'#%s (private)' % id)
if more: if more:
shrinkList(L, ', ', 400) utils.shrinkList(L, ', ', 400)
L.append('and even more notes.') L.append('and even more notes.')
else: else:
shrinkList(L, ', ', 450) utils.shrinkList(L, ', ', 450)
irc.reply(msg, ', '.join(L)) irc.reply(msg, ', '.join(L))
def oldnotes(self, irc, msg, args): def oldnotes(self, irc, msg, args):