From 82bb295b201b3d19b72e2f0f565f868581538e1c Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 3 Jun 2003 05:24:21 +0000 Subject: [PATCH] Fixed enqueuing in deepthought. --- plugins/Http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Http.py b/plugins/Http.py index bfdd0d1a5..a223ac03f 100644 --- a/plugins/Http.py +++ b/plugins/Http.py @@ -70,7 +70,7 @@ class Http(callbacks.Privmsg): s = fd.read() thought = s.split('
')[2] thought = ' '.join(thought.split()) - self.deepthoughtq.enqueue(thought) + self.deepthoughtq.enqueue((now, thought)) irc.reply(msg, thought) _titleRe = re.compile(r'(.*)')