Author: phd
Date: 2009-02-06 06:53:59 -0700 (Fri, 06 Feb 2009)
New Revision: 3782
Modified:
SQLObject/branches/0.10/sqlobject/sqlite/sqliteconnection.py
Log:
Merged revision 3781 from the branch 0.9: fixed a minor misspelling.
Modified: SQLObject/branches/0.10/sqlobject/sqlite/sqliteconnection.py
===================================================================
--- SQLObject/branches/0.10/sqlobject/sqlite/sqliteconnection.py 2009-02-06 13:51:38 UTC (rev 3781)
+++ SQLObject/branches/0.10/sqlobject/sqlite/sqliteconnection.py 2009-02-06 13:53:59 UTC (rev 3782)
@@ -305,7 +305,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('(')
|