mercurial/filemerge.py
changeset 26528 8bfef5737321
parent 26527 b4aab4223102
child 26529 7833b13b001f
--- 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):