# HG changeset patch # User sylvain.thenault@logilab.fr # Date 1235090918 -3600 # Node ID 44f1aba675deecfdc52da5a3df79c4616d81cc6e # Parent 75488a2a875ec3e9ff837f89cf79d99cfe545610 missing selectors, no more need for relation_possible when using has_related_entities (implied) diff -r 75488a2a875e -r 44f1aba675de web/component.py --- a/web/component.py Fri Feb 20 01:48:06 2009 +0100 +++ b/web/component.py Fri Feb 20 01:48:38 2009 +0100 @@ -142,7 +142,7 @@ class RelatedObjectsVComponent(EntityVComponent): """a section to display some related entities""" - __select__ = partial_relation_possible() & partial_has_related_entities() + __select__ = EntityVComponent.__select__ & partial_has_related_entities() vid = 'list'