fix typo for predicate name

git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@4051 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2010-10-23 14:22:06 +00:00
parent bf0cd1f006
commit 7966188753

View file

@ -114,7 +114,7 @@ class EditPersonForm(EditConceptForm):
types = list(self.typeManager.listTypes(include=('workspace',)))
#assigned = [r.context for r in self.assignments]
#types = [t for t in types if t.typeProvider not in assigned]
predicates = [n for n in ['standard', 'ismember', 'ismaster', 'iswoner']
predicates = [n for n in ['standard', 'ismember', 'ismaster', 'isowner']
if n in self.conceptManager]
return [dict(title=t.title, token=t.tokenForSearch, predicates=predicates)
for t in types]