--- a/mercurial/cmdutil.py Tue Aug 14 11:15:05 2018 +0200
+++ b/mercurial/cmdutil.py Tue Aug 14 11:39:48 2018 +0200
@@ -2130,7 +2130,8 @@
for f in forget:
if ui.verbose or not match.exact(f) or interactive:
- ui.status(_('removing %s\n') % match.rel(f))
+ ui.status(_('removing %s\n') % match.rel(f),
+ label='addremove.removed')
if not dryrun:
rejected = wctx.forget(forget, prefix)
@@ -2263,7 +2264,8 @@
for f in list:
if ui.verbose or not m.exact(f):
progress.increment()
- ui.status(_('removing %s\n') % m.rel(f))
+ ui.status(_('removing %s\n') % m.rel(f),
+ label='addremove.removed')
progress.complete()
if not dryrun: