mercurial/subrepo.py
changeset 15474 95174c381525
parent 15410 9e99d2bbb1b1
child 15513 646759147717
--- a/mercurial/subrepo.py	Wed Nov 09 19:46:49 2011 -0500
+++ b/mercurial/subrepo.py	Wed Nov 09 19:46:51 2011 -0500
@@ -360,6 +360,9 @@
         '''
         pass
 
+    def forget(self, files):
+        pass
+
 class hgsubrepo(abstractsubrepo):
     def __init__(self, ctx, path, state):
         self._path = path
@@ -553,6 +556,10 @@
         ctx = self._repo[None]
         return ctx.walk(match)
 
+    def forget(self, files):
+        ctx = self._repo[None]
+        ctx.forget(files)
+
 class svnsubrepo(abstractsubrepo):
     def __init__(self, ctx, path, state):
         self._path = path