Modified:
branches/unhork/grassyknoll/backend/sql/TableMaker.py
Log:
Issue #161: One more instance where we were using SQLite shorthand.
Modified: branches/unhork/grassyknoll/backend/sql/TableMaker.py
==============================================================================
--- branches/unhork/grassyknoll/backend/sql/TableMaker.py (original)
+++ branches/unhork/grassyknoll/backend/sql/TableMaker.py Mon Dec 22
23:23:00 2008
@@ -163,7 +163,7 @@
func(self.multiIndexSql(multi))
def create(self, connection):
- self.build(connection.execute)
+ self.build(connection.cursor().execute)
def show(self):
# need to use instead of return b/c build doesn't return anything