Changeset 348 for elixir/trunk/elixir/properties.py
- Timestamp:
- 06/20/08 14:09:41 (4 years ago)
- Files:
-
- 1 modified
-
elixir/trunk/elixir/properties.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
elixir/trunk/elixir/properties.py
r347 r348 116 116 # delete the original attribute so that it doesn't interfere with 117 117 # SQLAlchemy. 118 if hasattr(entity, name):118 if name in entity.__dict__: 119 119 delattr(entity, name) 120 120
