Skip to content

Commit

Permalink
Collector #458: Fixed broken reindex_all method of CatalogAwareness c…
Browse files Browse the repository at this point in the history
…lasses
  • Loading branch information
caseman committed Jul 5, 2002
1 parent 96807bb commit 249b739
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CatalogAwareness.py
Expand Up @@ -133,7 +133,7 @@ def reindex_all(self, obj=None):
if hasattr(aq_base(obj), 'objectValues'):
sub=obj.objectValues()
for item in obj.objectValues():
reindex_all(self, item)
self.reindex_all(self, item)
return 'done!'


Expand Down
2 changes: 1 addition & 1 deletion CatalogPathAwareness.py
Expand Up @@ -118,7 +118,7 @@ def reindex_all(self, obj=None):
if hasattr(aq_base(obj), 'objectValues'):
sub=obj.objectValues()
for item in obj.objectValues():
reindex_all(self, item)
self.reindex_all(self, item)
return 'done!'

class CatalogPathAware(CatalogAware):
Expand Down

0 comments on commit 249b739

Please sign in to comment.