# HG changeset patch # User Augie Fackler # Date 2016-06-10 04:14:43 # Node ID f72d0c2148da317f4fe6c95d0c94a74b715541a1 # Parent 9368ed12f3c03000252d7f5d4a7584f2e30c8c97 similar: delete extra newline at EOF Spotted by my emacs config that cleans up extra whitespace. diff --git a/mercurial/similar.py b/mercurial/similar.py --- a/mercurial/similar.py +++ b/mercurial/similar.py @@ -106,4 +106,3 @@ def findrenames(repo, added, removed, th for (a, b, score) in _findsimilarmatches(repo, sorted(addedfiles), sorted(removedfiles), threshold): yield (a.path(), b.path(), score) -