Mercurial > public > mercurial-scm > hg-stable
diff mercurial/copies.py @ 18362:5a4f220fbfca
copies: report found copies sorted
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Wed, 12 Dec 2012 02:38:14 +0100 |
parents | 2330d97e7707 |
children | 3cfaace0441e |
line wrap: on
line diff
--- a/mercurial/copies.py Tue Jan 15 02:59:12 2013 +0100 +++ b/mercurial/copies.py Wed Dec 12 02:38:14 2012 +0100 @@ -314,7 +314,7 @@ if fullcopy: repo.ui.debug(" all copies found (* = to merge, ! = divergent, " "% = renamed and deleted):\n") - for f in fullcopy: + for f in sorted(fullcopy): note = "" if f in copy: note += "*"