From ca492afd3866fea31be4149ec4f8596eae782b61 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 27 Aug 2004 15:01:28 +0000 Subject: [PATCH] Fix for the TypeError bug. --- plugins/Later.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Later.py b/plugins/Later.py index 4fbd10217..a051a8fe4 100644 --- a/plugins/Later.py +++ b/plugins/Later.py @@ -116,7 +116,7 @@ class Later(callbacks.Privmsg): if maximum and len(notes) >= maximum: raise ValueError else: - notes.append[(at, whence, text)] + notes.append((at, whence, text)) except KeyError: self.notes[nick] = [(at, whence, text)] if '?' in nick or '*' in nick and nick not in self.wildcards: