changeset 2849:95470e817c00

compat: fix instabilities compat We added an instabilities method for old version of Mercurial. But we returned an old value for orphan changesets, the one before the big evolve renaming. Fix the return value to match the new return values.
author Boris Feld <boris.feld@octobus.net>
date Mon, 21 Aug 2017 19:44:23 +0200
parents 4b248aebc604
children a0d6741d4bb8
files hgext3rd/evolve/compat.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext3rd/evolve/compat.py	Mon Aug 21 14:21:49 2017 +0200
+++ b/hgext3rd/evolve/compat.py	Mon Aug 21 19:44:23 2017 +0200
@@ -136,7 +136,7 @@
          """
         instabilities = []
         if self.orphan():
-            instabilities.append('unstable')
+            instabilities.append('orphan')
         if self.phasedivergent():
             instabilities.append('phase-divergent')
         if self.contentdivergent():