@@ -2182,7 +2182,7 @@
try:
submatch = matchmod.narrowmatcher(subpath, matcher)
- if not sub.cat(ui, submatch, os.path.join(prefix, sub._path),
+ if not sub.cat(submatch, os.path.join(prefix, sub._path),
**opts):
err = 0
except error.RepoLookupError:
@@ -442,7 +442,7 @@
self.ui.warn("%s: %s" % (prefix, _("addremove is not supported")))
return 1
- def cat(self, ui, match, prefix, **opts):
+ def cat(self, match, prefix, **opts):
return 1
def status(self, rev2, **opts):
@@ -636,10 +636,10 @@
dry_run, similarity)
@annotatesubrepoerror
- def cat(self, ui, match, prefix, **opts):
+ def cat(self, match, prefix, **opts):
rev = self._state[1]
ctx = self._repo[rev]
- return cmdutil.cat(ui, self._repo, ctx, match, prefix, **opts)
+ return cmdutil.cat(self.ui, self._repo, ctx, match, prefix, **opts)
@annotatesubrepoerror
def status(self, rev2, **opts):