Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 33802:3821dfee2cfc
label: rename changeset.troubled into changeset.unstable
The renaming is done according to
https://www.mercurial-scm.org/wiki/CEDVocabulary.
Differential Revision: https://phab.mercurial-scm.org/D257
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Thu, 03 Aug 2017 14:32:50 +0200 |
parents | 96f43981c1c4 |
children | 40739aef97f7 |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Thu Aug 03 14:16:54 2017 +0200 +++ b/mercurial/cmdutil.py Thu Aug 03 14:32:50 2017 +0200 @@ -1571,7 +1571,7 @@ if ctx.obsolete(): labels.append('changeset.obsolete') if ctx.isunstable(): - labels.append('changeset.troubled') + labels.append('changeset.unstable') for instability in ctx.instabilities(): labels.append('trouble.%s' % instability) return ' '.join(labels)