testing is good!

This commit is contained in:
Ryan Hitchman 2009-11-20 17:58:17 -07:00
parent ef19fa7571
commit e8686e0279
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ def dbconnect(db):
"check to see that our db has the tell table and return a connection." "check to see that our db has the tell table and return a connection."
conn = sqlite3.connect(db) 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," "autoincrement, name text not null, user_from text not null,"
"quote text not null, chan text not null, " "quote text not null, chan text not null, "
"date datetime not null);") "date datetime not null);")