From e8686e0279d3efe3841fb4a947bbdc4eb9e8fdc8 Mon Sep 17 00:00:00 2001 From: Ryan Hitchman Date: Fri, 20 Nov 2009 17:58:17 -0700 Subject: [PATCH] testing is good! --- plugins/tell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tell.py b/plugins/tell.py index 2394e9a..bdfc9ec 100644 --- a/plugins/tell.py +++ b/plugins/tell.py @@ -117,7 +117,7 @@ def dbconnect(db): "check to see that our db has the tell table and return a connection." conn = sqlite3.connect(db) - conn.execute("CREATE TABLE IF NOT EXISTS tell(id integer primary key" + conn.execute("CREATE TABLE IF NOT EXISTS tell(id integer primary key " "autoincrement, name text not null, user_from text not null," "quote text not null, chan text not null, " "date datetime not null);")