changeset 28627 | d7af9b4ae7dd |
parent 28601 | cd10171d6c71 |
child 28891 | ac30adb260ea |
--- a/mercurial/graphmod.py Thu Mar 24 16:35:24 2016 -0700 +++ b/mercurial/graphmod.py Wed Mar 23 13:34:47 2016 -0700 @@ -33,7 +33,7 @@ MISSINGPARENT = 'M' # Style of line to draw. None signals a line that ends and is removed at this # point. -EDGES = {PARENT: '|', GRANDPARENT: '|', MISSINGPARENT: '|'} +EDGES = {PARENT: '|', GRANDPARENT: ':', MISSINGPARENT: None} def groupbranchiter(revs, parentsfunc, firstbranch=()): """Yield revisions from heads to roots one (topo) branch at a time.