D5983: debugpathcopies: sort output so it's deterministic

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Wed Feb 20 15:31:47 EST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGf044d7832e10: debugpathcopies: sort output so it's deterministic (authored by martinvonz, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D5983?vs=14143&id=14152

REVISION DETAIL
  https://phab.mercurial-scm.org/D5983

AFFECTED FILES
  mercurial/debugcommands.py

CHANGE DETAILS

diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py
--- a/mercurial/debugcommands.py
+++ b/mercurial/debugcommands.py
@@ -1815,7 +1815,7 @@
     ctx1 = scmutil.revsingle(repo, rev1)
     ctx2 = scmutil.revsingle(repo, rev2)
     m = scmutil.match(ctx1, pats, opts)
-    for dst, src in copies.pathcopies(ctx1, ctx2, m).items():
+    for dst, src in sorted(copies.pathcopies(ctx1, ctx2, m).items()):
         ui.write('%s -> %s\n' % (src, dst))
 
 @command('debugpeer', [], _('PATH'), norepo=True)



To: martinvonz, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list