fix for "TypeError: can't pickle OIBTreeItems objects".

svn path=/plone.app.discussion/trunk/; revision=27776
This commit is contained in:
Timo Stollenwerk 2009-07-02 16:04:02 +00:00
parent 8b60038237
commit 045a926621
1 changed files with 2 additions and 1 deletions

View File

@ -167,7 +167,8 @@ class Conversation(Traversable, Persistent, Explicit):
@property
def commentators(self):
return self._commentators.keys()
if len(self._commentators.keys()) != 0:
return self._commentators.keys()
def objectIds(self):
return self._comments.keys()