Commit 57c22024 authored by Yoshinori Okuji's avatar Yoshinori Okuji

Fix a stupid typo.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3181 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f87ddbf6
......@@ -117,7 +117,7 @@ class ValueListGetter(Method):
def __call__(self, instance, *args, **kw):
# We return the list of matching objects
return [o.getObject() for x in self.contentValues({'portal_type': self._portal_type, 'id': self._storage_id_list})]
return [o.getObject() for o in self.contentValues({'portal_type': self._portal_type, 'id': self._storage_id_list})]
psyco.bind(__call__)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment