# HG changeset patch # User Sylvain Thénault # Date 1274421399 -7200 # Node ID 6b183d860295ec015ea02f2573ce4d8a1fcb76e6 # Parent afd1face1faf19c055447d2677ed8f0c3c0afb3a [entity] fix access to attribute which has been renamed two revisions ago diff -r afd1face1faf -r 6b183d860295 entity.py --- a/entity.py Thu May 20 20:50:03 2010 +0200 +++ b/entity.py Fri May 21 07:56:39 2010 +0200 @@ -345,7 +345,7 @@ if hasattr(self, 'edited_attributes') and \ attr not in self.edited_attributes: self.edited_attributes.add(attr) - self.skip_security_attributes.add(attr) + self._cw_skip_security_attributes.add(attr) def __delitem__(self, attr): """override __delitem__ to update self.edited_attributes on cleanup of @@ -375,7 +375,7 @@ if hasattr(self, 'edited_attributes') and \ attr not in self.edited_attributes: self.edited_attributes.add(attr) - self.skip_security_attributes.add(attr) + self._cw_skip_security_attributes.add(attr) def pop(self, attr, default=_marker): """override pop to update self.edited_attributes on cleanup of