[SQL-CVS] r711 - trunk/SQLObject/sqlobject
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2005-04-04 19:08:35
|
Author: phd Date: 2005-04-04 19:08:30 +0000 (Mon, 04 Apr 2005) New Revision: 711 Modified: trunk/SQLObject/sqlobject/cache.py Log: Fixed a misspelling. Modified: trunk/SQLObject/sqlobject/cache.py =================================================================== --- trunk/SQLObject/sqlobject/cache.py 2005-04-04 16:58:07 UTC (rev 710) +++ trunk/SQLObject/sqlobject/cache.py 2005-04-04 19:08:30 UTC (rev 711) @@ -186,7 +186,7 @@ # This offset tries to balance out which objects we # expire, so no object will just hang out in the cache # forever. - self.cullOffset = (self.culldOffset + 1) % self.cullFraction + self.cullOffset = (self.cullOffset + 1) % self.cullFraction finally: self.lock.release() |