mercurial/localrepo.py
changeset 1835 bdfb524d728a
parent 1807 f1f43ea22cbf
child 1838 429bf036f2cb
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -1679,6 +1679,7 @@ class localrepository(object):
         remove.sort()
         for f in remove:
             self.ui.note(_("removing %s\n") % f)
+            util.audit_path(f)
             try:
                 util.unlink(self.wjoin(f))
             except OSError, inst: