hgext/evolve.py
branchstable
changeset 1400 ff43167ed0ba
parent 973 6d691fefdbd1
parent 1399 9ff6d9240f16
child 1401 20ff4ef75b87
--- a/hgext/evolve.py	Thu Jun 05 18:07:39 2014 -0400
+++ b/hgext/evolve.py	Mon Jun 16 14:31:49 2014 -0700
@@ -594,6 +594,13 @@
         return 'unstable'
     return 'stable'
 
+@eh.templatekw('troubles')
+def showtroubles(repo, ctx, **args):
+    """:troubles: List of strings. Evolution troubles affecting the changeset
+    (zero or more of "unstable", "divergent" or "bumped")."""
+    return templatekw.showlist('trouble', ctx.troubles(), plural='troubles',
+                               **args)
+
 #####################################################################
 ### Various trouble warning                                       ###
 #####################################################################