mercurial/context.py
changeset 33667 03039ff3082b
parent 33501 7008f6819002
child 33688 2194a8723138
--- 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():