--- a/mercurial/subrepo.py Thu Feb 07 11:15:30 2019 -0800
+++ b/mercurial/subrepo.py Thu Feb 07 23:19:33 2019 -0800
@@ -358,7 +358,7 @@
def forget(self, match, prefix, dryrun, interactive):
return ([], [])
- def removefiles(self, matcher, prefix, after, force, subrepos,
+ def removefiles(self, matcher, prefix, uipathfn, after, force, subrepos,
dryrun, warnings):
"""remove the matched files from the subrepository and the filesystem,
possibly by force and/or after the file has been removed from the
@@ -841,9 +841,9 @@
True, dryrun=dryrun, interactive=interactive)
@annotatesubrepoerror
- def removefiles(self, matcher, prefix, after, force, subrepos,
+ def removefiles(self, matcher, prefix, uipathfn, after, force, subrepos,
dryrun, warnings):
- return cmdutil.remove(self.ui, self._repo, matcher, prefix,
+ return cmdutil.remove(self.ui, self._repo, matcher, prefix, uipathfn,
after, force, subrepos, dryrun)
@annotatesubrepoerror