From 6f7e3e53c13ebab7c015926c4921d1d6b0692974 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 29 May 2003 16:35:35 +0000 Subject: [PATCH] Moved queue from fix to structures. --- plugins/Google.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Google.py b/plugins/Google.py index 62d3e4f9f..2f3c018e7 100644 --- a/plugins/Google.py +++ b/plugins/Google.py @@ -46,6 +46,7 @@ import utils import ircmsgs import privmsgs import callbacks +import structures def configure(onStart, afterConnect, advanced): from questions import expect, anything, something, yn @@ -75,7 +76,7 @@ class GooglePrivmsg(callbacks.Privmsg): callbacks.Privmsg.__init__(self) self.total = 0 self.totalTime = 0 - self.last24hours = queue() + self.last24hours = structures.queue() def _searched(self, data): now = time.time()