mercurial/merge.py
changeset 33085 1e79c66d6b07
parent 33084 873f638fd7db
child 33086 eb4c49f55f1f
--- a/mercurial/merge.py	Sun Jun 25 22:29:09 2017 -0700
+++ b/mercurial/merge.py	Sun Jun 25 22:30:14 2017 -0700
@@ -1130,7 +1130,6 @@
     """
     verbose = repo.ui.verbose
     fctx = mctx.filectx
-    wwrite = repo.wwrite
     ui = repo.ui
     i = 0
     with repo.wvfs.backgroundclosing(ui, expectedcount=len(actions)):
@@ -1151,7 +1150,7 @@
 
             if repo.wvfs.isdir(f) and not repo.wvfs.islink(f):
                 repo.wvfs.removedirs(f)
-            wwrite(f, fctx(f).data(), flags, backgroundclose=True)
+            wctx[f].write(fctx(f).data(), flags, backgroundclose=True)
             if i == 100:
                 yield i, f
                 i = 0