mercurial/merge.py
changeset 5158 d316124ebbea
parent 5060 2ef14e29e538
child 5161 4ed58fe4fe13
--- a/mercurial/merge.py	Thu Aug 09 20:16:00 2007 -0700
+++ b/mercurial/merge.py	Fri Aug 10 10:46:03 2007 -0700
@@ -391,13 +391,15 @@
                 repo.ui.debug(_("copying %s to %s\n") % (f, fd))
                 repo.wwrite(fd, repo.wread(f), flags)
 
+    audit_path = util.path_auditor(repo.root)
+
     for a in action:
         f, m = a[:2]
         if f and f[0] == "/":
             continue
         if m == "r": # remove
             repo.ui.note(_("removing %s\n") % f)
-            util.audit_path(f)
+            audit_path(f)
             try:
                 util.unlink(repo.wjoin(f))
             except OSError, inst: