From d80318d9506d177de44c00908a51012744e6d89c Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 4 Sep 2009 16:43:55 -0400 Subject: [PATCH] Fix small case sensitive bug. --- pyfpdb/Database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Database.py b/pyfpdb/Database.py index 04719d7a..4059786a 100755 --- a/pyfpdb/Database.py +++ b/pyfpdb/Database.py @@ -1014,7 +1014,7 @@ class Database: if self.backend == self.SQLITE: c.execute("INSERT INTO TourneyTypes (id, siteId, buyin, fee) VALUES (NULL, 1, 0, 0);") else: - c.execute("insert into tourneytypes values (0,1,0,0,0,0,0,null,0,0,0);") + c.execute("insert into TourneyTypes values (0,1,0,0,0,0,0,null,0,0,0);") #end def fillDefaultData