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))")