Skip to content

Commit

Permalink
Merge pull request #404 from EvgSkv/ti2023
Browse files Browse the repository at this point in the history
Use unicode colon to help graphviz.
  • Loading branch information
EvgSkv authored Nov 13, 2024
2 parents 0ade093 + c4eeac0 commit 3ec980b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/concertina_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def NodeText(node):
maybe_iteration_info += ' / stop.'
else:
maybe_iteration_info = ''
return node + maybe_iteration_info
return node.replace(':', '⁝') + maybe_iteration_info
g = graphviz.Digraph('Concertina')
for a in self.all_actions:
color = self.ActionColor(a)
Expand Down

0 comments on commit 3ec980b

Please sign in to comment.