mercurial/scmutil.py
changeset 19895 37c0d93fb166
parent 19655 1d07bf106c2a
child 19896 af03279c766a
--- a/mercurial/scmutil.py	Thu Oct 03 18:01:21 2013 +0200
+++ b/mercurial/scmutil.py	Tue Oct 15 00:51:04 2013 +0900
@@ -271,6 +271,9 @@
     def stat(self, path=None):
         return os.stat(self.join(path))
 
+    def unlink(self, path=None):
+        return util.unlink(self.join(path))
+
 class vfs(abstractvfs):
     '''Operate files relative to a base directory