equal
deleted
inserted
replaced
104 # If the user requested similar files to be matched, search for them also. |
104 # If the user requested similar files to be matched, search for them also. |
105 if threshold < 1.0: |
105 if threshold < 1.0: |
106 for (a, b, score) in _findsimilarmatches(repo, |
106 for (a, b, score) in _findsimilarmatches(repo, |
107 sorted(addedfiles), sorted(removedfiles), threshold): |
107 sorted(addedfiles), sorted(removedfiles), threshold): |
108 yield (a.path(), b.path(), score) |
108 yield (a.path(), b.path(), score) |
109 |
|