Skip to content

Commit

Permalink
Fix bug #458 correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
stub42 committed Jul 18, 2003
1 parent 721622f commit 6ea1024
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,5 +133,5 @@ def reindex_all(self, obj=None):
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!'
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():
self.reindex_all(self, item)
self.reindex_all(item)
return 'done!'

class CatalogPathAware(CatalogAware):
Expand Down

0 comments on commit 6ea1024

Please sign in to comment.