- Revision
- 11153
- Author
- vajda
- Date
- 2006-07-13 15:08:23 -0700 (Thu, 13 Jul 2006)
Log Message
- turned off error checking in _removeRef inside transient ref collections
Modified Paths
Diff
Modified: trunk/chandler/repository/item/RefCollections.py (11152 => 11153)
--- trunk/chandler/repository/item/RefCollections.py 2006-07-13 22:08:02 UTC (rev 11152) +++ trunk/chandler/repository/item/RefCollections.py 2006-07-13 22:08:23 UTC (rev 11153) @@ -724,6 +724,9 @@ def _setDirty(self, noMonitors=False): pass + def _removeRef(self, other, noError=False): + return super(TransientRefList, self)._removeRef(other, True) + def _unloadRef(self, item): key = item.itsUUID
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
