1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-31 20:22:15 +03:00

python/graph: use '>' for excessive numbers, not '+'

'+' already has another meaning in these graphs.

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall
2018-06-01 16:51:19 +12:00
committed by Andrew Bartlett
parent 02bca5590c
commit 8792609404

View File

@ -624,7 +624,7 @@ def distance_matrix(vertices, edges,
else:
ct = colour_transitive(link)
if link > 9:
link = '+'
link = '>'
row.append('%s%s%s' % (ct, link, c_reset))
if row_comments is not None and row_comments[i]: