--- a/mercurial/commands.py Thu Aug 03 13:48:39 2017 +0200
+++ b/mercurial/commands.py Thu Aug 03 14:01:51 2017 +0200
@@ -4992,12 +4992,12 @@
ui.status(_('phases: %s\n') % ', '.join(t))
if obsolete.isenabled(repo, obsolete.createmarkersopt):
- for trouble in ("orphan", "divergent", "bumped"):
+ for trouble in ("orphan", "contentdivergent", "bumped"):
numtrouble = len(repo.revs(trouble + "()"))
# We write all the possibilities to ease translation
troublemsg = {
"orphan": _("orphan: %d changesets"),
- "divergent": _("content-divergent: %d changesets"),
+ "contentdivergent": _("content-divergent: %d changesets"),
"bumped": _("phase-divergent: %d changesets"),
}
if numtrouble > 0: