Fix bug in note filters

svn: r22860
This commit is contained in:
Nick Hall
2013-08-13 18:39:18 +00:00
parent d988af9d10
commit 626463d7ea

View File

@ -49,10 +49,8 @@ class HasNoteRegexBase(Rule):
allow_regex = True allow_regex = True
def apply(self, db, person): def apply(self, db, person):
notelist = person.get_note_list() for handle in person.get_note_list():
for notehandle in notelist: note = db.get_note_from_handle(handle)
note = db.get_note_from_handle(notehandle) if self.match_substring(0, note.get()):
n = note.get()
if self.match_substring(0, n) is not None:
return True return True
return False return False