diff mercurial/templatekw.py @ 35512:9b3f95d9783d

graphlog: add another graph node type, unstable, using character "*" (BC)
author Anton Shestakov <av6@dwimlabs.net>
date Fri, 22 Dec 2017 23:17:04 +0800
parents c7b45db8f317
children c8e2d6ed1f9e
line wrap: on
line diff
--- a/mercurial/templatekw.py	Tue Dec 26 23:40:49 2017 -0500
+++ b/mercurial/templatekw.py	Fri Dec 22 23:17:04 2017 +0800
@@ -538,6 +538,8 @@
         return '@'
     elif ctx.obsolete():
         return 'x'
+    elif ctx.isunstable():
+        return '*'
     elif ctx.closesbranch():
         return '_'
     else: