Mercurial > hg-stable
changeset 11085:0c8646292ca4
fix coding style
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sun, 02 May 2010 00:48:33 +0200 |
parents | 4a8d4179362b |
children | c2601c216333 |
files | mercurial/similar.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/similar.py Sat May 01 16:57:02 2010 -0500 +++ b/mercurial/similar.py Sun May 02 00:48:33 2010 +0200 @@ -91,7 +91,7 @@ # 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)