Forgot the utils.

This commit is contained in:
Jeremy Fincher 2003-04-23 22:38:38 +00:00
parent 0cc386e7f7
commit 3620be1ed2
1 changed files with 2 additions and 2 deletions

View File

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