diff mercurial/hgweb/webutil.py @ 44379:14d0e89520a2

graphlog: use '%' for other context in merge conflict This lets the user more easily find the commit that is involved in the conflict, such as the source of `hg update -m` or the commit being grafted by `hg graft`. Differential Revision: https://phab.mercurial-scm.org/D8043
author Martin von Zweigbergk <martinvonz@google.com>
date Tue, 28 Jan 2020 21:49:50 -0800
parents 29adf0a087a1
children 89a2afe31e82
line wrap: on
line diff
--- a/mercurial/hgweb/webutil.py	Wed Jan 29 14:42:54 2020 -0800
+++ b/mercurial/hgweb/webutil.py	Tue Jan 28 21:49:50 2020 -0800
@@ -936,5 +936,5 @@
 
 def getgraphnode(repo, ctx):
     return templatekw.getgraphnodecurrent(
-        repo, ctx
+        repo, ctx, {}
     ) + templatekw.getgraphnodesymbol(ctx)