Submitter | Yuya Nishihara |
---|---|
Date | May 25, 2018, 1:54 p.m. |
Message ID | <454b7e1cf3ab64286c79.1527256454@mimosa> |
Download | mbox | patch |
Permalink | /patch/31854/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -1344,7 +1344,7 @@ def graph(web): entry.update({'col': vtx[0], 'color': (vtx[1] - 1) % 6 + 1, 'parity': next(parity), - 'edges': edgedata, + 'edges': templateutil.mappinglist(edgedata), 'row': row, 'nextrow': row + 1})