- Revision
- 11247
- Author
- vajda
- Date
- 2006-07-24 14:58:43 -0700 (Mon, 24 Jul 2006)
Log Message
- improved missing abstract set value error
Modified Paths
Diff
Modified: trunk/chandler/repository/item/Values.py (11246 => 11247)
--- trunk/chandler/repository/item/Values.py 2006-07-24 20:15:16 UTC (rev 11246) +++ trunk/chandler/repository/item/Values.py 2006-07-24 21:58:43 UTC (rev 11247) @@ -472,6 +472,8 @@ self[name] = value = item._refList(name, otherName) elif cardinality == 'dict': self[name] = value = RefDict(item, name, otherName) + elif cardinality == 'set': + raise NoValueForAttributeError, (item, name) elif cardinality != 'single': raise ValueError, cardinality
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
