Fixed spaces in netnames for the Board View format.

Fixes #90
This commit is contained in:
Salvador E. Tropea 2021-10-12 09:01:10 -03:00
parent 54cce8ae73
commit d93c050a7e
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ def convert(pcb, brd):
for net_item in net_items:
brd.write("{code} {name}\n"
.format(code=net_item.GetNet(),
name=net_item.GetNetname()))
name=net_item.GetNetname().replace(" ", u"\u00A0")))
brd.write("\n")
# Parts