Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 14435:5f6090e559fa
context: make forget work like commands.forget
Switch users of wctx.delete(..., False) to forget.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 26 May 2011 17:15:35 -0500 |
parents | cc8c09855d19 |
children | d1a1578c5f78 |
line wrap: on
line diff
--- a/mercurial/commands.py Thu May 26 17:15:35 2011 -0500 +++ b/mercurial/commands.py Thu May 26 17:15:35 2011 -0500 @@ -2269,7 +2269,7 @@ if ui.verbose or not m.exact(f): ui.status(_('removing %s\n') % m.rel(f)) - repo[None].remove(forget, unlink=False) + repo[None].forget(forget) return errs @command('grep',