From bad13e29082f7d8075d947f08540fbf270175e74 Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Mon, 1 Feb 2010 01:16:16 -0700 Subject: [PATCH] make quote.py use the proper db --- plugins/quote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/quote.py b/plugins/quote.py index 33542ce..6c0c333 100644 --- a/plugins/quote.py +++ b/plugins/quote.py @@ -34,7 +34,7 @@ def quote(bot, input): ".q/.quote [#n]/.quote add -- gets " \ "random or [#n]th quote by or from <#chan>/adds quote" - conn = bot.get_db_connection(bot, input.server) + conn = bot.get_db_connection(input.server) conn.execute("create table if not exists quote" "(chan, nick, add_nick, msg, time real, deleted default 0, " "primary key (chan, nick, msg))")