diff mercurial/cmdutil.py @ 39089:3ff9d2ec6d88

add: add a label for messages about added files Keeping consistency between addremove and add seems a good idea.
author Boris Feld <boris.feld@octobus.net>
date Tue, 14 Aug 2018 11:15:05 +0200
parents b5040a9cb84c
children 1320df0dcaae
line wrap: on
line diff
--- a/mercurial/cmdutil.py	Wed Jul 25 17:11:52 2018 +0200
+++ b/mercurial/cmdutil.py	Tue Aug 14 11:15:05 2018 +0200
@@ -2031,7 +2031,8 @@
                 cca(f)
             names.append(f)
             if ui.verbose or not exact:
-                ui.status(_('adding %s\n') % match.rel(f))
+                ui.status(_('adding %s\n') % match.rel(f),
+                          label='addremove.added')
 
     for subpath in sorted(wctx.substate):
         sub = wctx.sub(subpath)