7595 Custom filters for note text repaired

This commit is contained in:
Enno Borgsteede 2015-08-24 08:48:15 +10:00 committed by Sam Manzi
parent cdee00aca2
commit 8e341f96b7

View File

@ -49,7 +49,6 @@ class MatchesRegexpOf(Rule):
def apply(self, db, note):
""" Apply the filter """
text = note.get()
if self.match_substring(0, text) is not None:
if self.match_substring(0, note.get()):
return True
return False