Author: phd
Date: 2009-09-30 09:48:38 -0600 (Wed, 30 Sep 2009)
New Revision: 4025
Modified:
SQLObject/trunk/sqlobject/col.py
Log:
Fixed the name of the attribute: sqlmeta._obsolete.
Modified: SQLObject/trunk/sqlobject/col.py
===================================================================
--- SQLObject/trunk/sqlobject/col.py 2009-09-30 15:47:55 UTC (rev 4024)
+++ SQLObject/trunk/sqlobject/col.py 2009-09-30 15:48:38 UTC (rev 4025)
@@ -353,7 +353,7 @@
if obj is None:
# class attribute, return the descriptor itself
return self
- if obj.sqlmeta.obsolete:
+ if obj.sqlmeta._obsolete:
raise '@@: figure out the exception for a delete'
if obj.sqlmeta.cacheColumns:
columns = obj.sqlmeta._columnCache
|