# HG changeset patch # User Siddharth Agarwal # Date 1444283932 25200 # Node ID 8bfef57373214a37fe2121f77414bf0bb88ba484 # Parent b4aab4223102ab9e2b7a0b197a3f67c6ef8267f6 filemerge: move 'merging' output to before file creation This has no visible impact but makes some future work simpler. diff -r b4aab4223102 -r 8bfef5737321 mercurial/filemerge.py --- a/mercurial/filemerge.py Wed Oct 07 21:21:56 2015 -0700 +++ b/mercurial/filemerge.py Wed Oct 07 22:58:52 2015 -0700 @@ -493,6 +493,13 @@ if mergetype == nomerge: return func(repo, mynode, orig, fcd, fco, fca, toolconf) + if orig != fco.path(): + ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd)) + else: + ui.status(_("merging %s\n") % fd) + + ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca)) + a = repo.wjoin(fd) b = temp("base", fca) c = temp("other", fco) @@ -500,13 +507,6 @@ util.copyfile(a, back) files = (a, b, c, back) - if orig != fco.path(): - ui.status(_("merging %s and %s to %s\n") % (orig, fco.path(), fd)) - else: - ui.status(_("merging %s\n") % fd) - - ui.debug("my %s other %s ancestor %s\n" % (fcd, fco, fca)) - r = 0 if precheck and not precheck(repo, mynode, orig, fcd, fco, fca, toolconf):