forked from p15670423/monkey
changed right arrow to modern unicode literal
This commit is contained in:
parent
dc24647488
commit
a35e96fc91
|
@ -195,10 +195,7 @@ class EdgeService:
|
|||
else:
|
||||
to_label = NodeService.get_monkey_label(to_id)
|
||||
|
||||
RIGHT_ARROW = unichr(8594)
|
||||
return "%s %s %s" % (
|
||||
from_label,
|
||||
RIGHT_ARROW,
|
||||
to_label)
|
||||
RIGHT_ARROW = u"\u2192"
|
||||
return "%s %s %s" % (from_label, RIGHT_ARROW, to_label)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue