From 5f5ef91a1191ae4ee3cdc85b4ef5fae70b15c458 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 28 Mar 2003 06:11:54 +0000 Subject: [PATCH] Trying converters out. --- plugins/Notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Notes.py b/plugins/Notes.py index dac6cacfe..2a357dbcc 100644 --- a/plugins/Notes.py +++ b/plugins/Notes.py @@ -56,7 +56,7 @@ class Notes(callbacks.Privmsg): def makeDB(self): "create Notes database and tables" - self.db = sqlite.connect(self.filename) + self.db = sqlite.connect(self.filename, converters={'bool': bool}) self.cursor = self.db.cursor() self.cursor.execute("""CREATE TABLE users ( id INTEGER PRIMARY KEY,