Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
Implement getIndexSourceNames() correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum committed Jan 24, 2003
1 parent 166e3bf commit c811338
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ZCTextIndex.py
Expand Up @@ -216,8 +216,8 @@ def clear(self):
manage_main = DTMLFile('dtml/manageZCTextIndex', globals())

def getIndexSourceNames(self):
""" return name of indexed attributes """
return (self.id, )
"""Return sequence of names of indexed attributes"""
return [self._fieldname]

def getIndexType(self):
"""Return index type string"""
Expand Down

0 comments on commit c811338

Please sign in to comment.