# HG changeset patch # User Benoit Boissinot # Date 2010-05-01 22:48:33 # Node ID 0c8646292ca44b251da8303aae4d652160f0aaed # Parent 4a8d4179362bf68d9b202dd6e74d19edd39a91da fix coding style diff --git a/mercurial/similar.py b/mercurial/similar.py --- a/mercurial/similar.py +++ b/mercurial/similar.py @@ -91,7 +91,7 @@ def findrenames(repo, added, removed, th # Find exact matches. for (a, b) in _findexactmatches(repo, - sorted(addedfiles),sorted( removedfiles)): + sorted(addedfiles), sorted(removedfiles)): addedfiles.remove(b) yield (a.path(), b.path(), 1.0)