[SQL-CVS] r3783 - SQLObject/trunk/sqlobject/sqlite
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2009-02-06 13:56:32
|
Author: phd Date: 2009-02-06 06:56:26 -0700 (Fri, 06 Feb 2009) New Revision: 3783 Modified: SQLObject/trunk/sqlobject/sqlite/sqliteconnection.py Log: Merged revision 3781 from the branch 0.9: fixed a minor misspelling. Modified: SQLObject/trunk/sqlobject/sqlite/sqliteconnection.py =================================================================== --- SQLObject/trunk/sqlobject/sqlite/sqliteconnection.py 2009-02-06 13:53:59 UTC (rev 3782) +++ SQLObject/trunk/sqlobject/sqlite/sqliteconnection.py 2009-02-06 13:56:26 UTC (rev 3783) @@ -306,7 +306,7 @@ colData = self.queryOne("SELECT sql FROM sqlite_master WHERE type='table' AND name='%s'" % tableName) if not colData: - raise ValueError('The table %s ws not found in the database. Load failed.' % tableName) + raise ValueError('The table %s was not found in the database. Load failed.' % tableName) colData = colData[0].split('(', 1)[1].strip()[:-2] while colData.find('(') > -1: start = colData.find('(') |