Skip to content
Snippets Groups Projects
Commit 3a9cf0d0 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Add a note to the "Files similar despite different names" comment to clarify...

Add a note to the "Files similar despite different names" comment to clarify that a lower score is more similar.
parent 9f30b4b2
No related branches found
No related tags found
No related merge requests found
Pipeline #31120 failed
......@@ -157,7 +157,7 @@ class Container(object, metaclass=abc.ABCMeta):
for my_name, other_name, score in self.perform_fuzzy_matching(my_members, other_members):
comment = "Files similar despite different names" \
" (difference score: {})".format(score)
" (score: {}, lower is more similar)".format(score)
if score == 0:
comment = "Files identical despite different names"
yield prep_yield(my_name, other_name, comment)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment