Skip to content

Commit

Permalink
fix:match analyzer compare
Browse files Browse the repository at this point in the history
  • Loading branch information
aiddroid committed Jul 17, 2017
1 parent 959901c commit e290edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion golismero/api/text/matching_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def analyze(self, text, **kwargs):
ratio = get_diff_ratio(self.__base_text, text)

# If it's lower than our boundary...
if ratio > self.__min_ratio:
if ratio < self.__min_ratio:

# Invalidate the caches.
self.__clear_caches()
Expand Down

0 comments on commit e290edc

Please sign in to comment.