Merge pull request #35 from pitkley/fix/matching-logic

Fix matching if user supplied an empty value
This commit is contained in:
Daniel Quinn 2016-02-14 19:21:50 +00:00
commit 9a437dc9f6

View File

@ -86,6 +86,9 @@ class Tag(SluggedModel):
self.name, self.match, self.get_matching_algorithm_display())
def matches(self, text):
# Check that match is not empty
if self.match.strip() == "":
return False
if self.matching_algorithm == self.MATCH_ALL:
for word in self.match.split(" "):