Mercurial > hg-stable
changeset 23577:597b071a0e0d
subrepo: drop the 'ui' parameter to forget()
This no longer needs to be explicitly passed because the subrepo object tracks
the 'ui' reference since fcbc66b5da6a. See the change to 'archive' for details
about the differences between the output level in the root repo and subrepo 'ui'
object.
The only use for 'ui' in forget is to emit status and warning messages, and to
check the verbose flag prior to printing files to be forgotten. The bad()
method on the matcher still uses the root repo's ui, because narrowing the
matcher doesn't change the ui object.
The local repo's ui was already being used to print a warning message in
wctx.forget() and for 'ui.slash' when walking dirstate in the repo.status()
call.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 13 Dec 2014 19:23:30 -0500 |
parents | 70a7478c33de |
children | d0546e8e1def |
files | mercurial/cmdutil.py mercurial/subrepo.py |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Sat Dec 13 14:26:38 2014 -0500 +++ b/mercurial/cmdutil.py Sat Dec 13 19:23:30 2014 -0500 @@ -2028,7 +2028,7 @@ sub = wctx.sub(subpath) try: submatch = matchmod.narrowmatcher(subpath, match) - subbad, subforgot = sub.forget(ui, submatch, prefix) + subbad, subforgot = sub.forget(submatch, prefix) bad.extend([subpath + '/' + f for f in subbad]) forgot.extend([subpath + '/' + f for f in subforgot]) except error.LookupError:
--- a/mercurial/subrepo.py Sat Dec 13 14:26:38 2014 -0500 +++ b/mercurial/subrepo.py Sat Dec 13 19:23:30 2014 -0500 @@ -496,7 +496,7 @@ ''' pass - def forget(self, ui, match, prefix): + def forget(self, match, prefix): return ([], []) def removefiles(self, ui, matcher, prefix, after, force, subrepos): @@ -850,8 +850,8 @@ return ctx.walk(match) @annotatesubrepoerror - def forget(self, ui, match, prefix): - return cmdutil.forget(ui, self._repo, match, + def forget(self, match, prefix): + return cmdutil.forget(self.ui, self._repo, match, os.path.join(prefix, self._path), True) @annotatesubrepoerror