Commit 823a2ed7 authored by Stuart Bishop's avatar Stuart Bishop

Fix bug #458 correctly

parent c2d2c8ec
......@@ -133,5 +133,5 @@ class CatalogAware:
if hasattr(aq_base(obj), 'objectValues'):
sub=obj.objectValues()
for item in obj.objectValues():
self.reindex_all(self, item)
self.reindex_all(item)
return 'done!'
......@@ -118,7 +118,7 @@ class CatalogAware:
if hasattr(aq_base(obj), 'objectValues'):
sub=obj.objectValues()
for item in obj.objectValues():
self.reindex_all(self, item)
self.reindex_all(item)
return 'done!'
class CatalogPathAware(CatalogAware):
......
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