mercurial/scmutil.py
changeset 21716 90f9be5adade
parent 21563 764b691b8bda
child 21799 dfacdd6a111e
--- a/mercurial/scmutil.py	Thu Jun 05 22:20:32 2014 +0900
+++ b/mercurial/scmutil.py	Thu Jun 05 15:16:44 2014 +0530
@@ -226,6 +226,9 @@
     def unlink(self, path=None):
         return util.unlink(self.join(path))
 
+    def unlinkpath(self, path=None, ignoremissing=False):
+        return util.unlinkpath(self.join(path), ignoremissing)
+
     def utime(self, path=None, t=None):
         return os.utime(self.join(path), t)