- Revision
- 11255
- Author
- john
- Date
- 2006-07-25 13:01:05 -0700 (Tue, 25 Jul 2006)
Log Message
Fix bug#6389: Selecting more than one collection results in assertion error
Modified Paths
Diff
Modified: trunk/chandler/parcels/osaf/views/main/SideBar.py (11254 => 11255)
--- trunk/chandler/parcels/osaf/views/main/SideBar.py 2006-07-25 19:43:07 UTC (rev 11254) +++ trunk/chandler/parcels/osaf/views/main/SideBar.py 2006-07-25 20:01:05 UTC (rev 11255) @@ -1051,7 +1051,7 @@ ) def _mapItemToCacheKeyItem(self, item, hints): - assert isinstance (item, ContentCollection) # The sidebar can only contain ContentCollections + assert item is None or isinstance (item, ContentCollection) # The sidebar can only contain ContentCollections key = item sidebar = Block.Block.findBlockByName ("Sidebar") """
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
