Author: phd
Date: 2009-09-30 09:47:07 -0600 (Wed, 30 Sep 2009)
New Revision: 4023
Modified:
SQLObject/branches/0.10/sqlobject/col.py
Log:
Fixed the name of the attribute: sqlmeta._obsolete.
Modified: SQLObject/branches/0.10/sqlobject/col.py
===================================================================
--- SQLObject/branches/0.10/sqlobject/col.py 2009-09-30 15:35:30 UTC (rev 4022)
+++ SQLObject/branches/0.10/sqlobject/col.py 2009-09-30 15:47:07 UTC (rev 4023)
@@ -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
|