diff mercurial/context.py @ 33695:03039ff3082b

evolution: rename unstable to orphan Rename unstable to orphan in all external user-facing output. Only update user-facing output for the moment, variables names, templates keyword and potentially configuration would be done in later series. The renaming is done according to https://www.mercurial-scm.org/wiki/CEDVocabulary. Differential Revision: https://phab.mercurial-scm.org/D214
author Boris Feld <boris.feld@octobus.net>
date Tue, 01 Aug 2017 17:53:48 +0200
parents 7008f6819002
children 2194a8723138
line wrap: on
line diff
--- a/mercurial/context.py	Tue Aug 01 17:39:28 2017 +0200
+++ b/mercurial/context.py	Tue Aug 01 17:53:48 2017 +0200
@@ -229,13 +229,13 @@
         """return the list of troubles affecting this changesets.
 
         Troubles are returned as strings. possible values are:
-        - unstable,
+        - orphan,
         - bumped,
         - divergent.
         """
         troubles = []
         if self.unstable():
-            troubles.append('unstable')
+            troubles.append('orphan')
         if self.bumped():
             troubles.append('bumped')
         if self.divergent():