Fixed soundex filter

svn: r330
This commit is contained in:
Don Allingham
2001-08-12 13:14:32 +00:00
parent ea51d564da
commit a57a011dc5
2 changed files with 71 additions and 126 deletions

View File

@@ -29,7 +29,7 @@ _ = intl.gettext
class MatchSndEx(Filter.Filter):
"Names with same SoundEx code as ..."
def __init__(self,text,invert):
def __init__(self,text):
self.sndex = soundex.soundex(text)
Filter.Filter.__init__(self,text)