[SQL-CVS] r819 - trunk/SQLObject/examples
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2005-06-16 18:02:55
|
Author: phd Date: 2005-06-16 18:02:42 +0000 (Thu, 16 Jun 2005) New Revision: 819 Modified: trunk/SQLObject/examples/codebits.py Log: Fixed a misspelled variable name. Modified: trunk/SQLObject/examples/codebits.py =================================================================== --- trunk/SQLObject/examples/codebits.py 2005-06-14 18:12:42 UTC (rev 818) +++ trunk/SQLObject/examples/codebits.py 2005-06-16 18:02:42 UTC (rev 819) @@ -76,7 +76,7 @@ ## Snippet "transactions2" class Person(SQLObject): - _cacheValue = False + _cacheValues = False # ... ## end snippet |