From 3620be1ed26f2388703a088b2c90e3c666de1115 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 23 Apr 2003 22:38:38 +0000 Subject: [PATCH] Forgot the utils. --- plugins/Notes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Notes.py b/plugins/Notes.py index cb76e2be1..b9e3951e4 100644 --- a/plugins/Notes.py +++ b/plugins/Notes.py @@ -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):