mirror of
https://github.com/markqvist/Reticulum.git
synced 2026-08-28 04:53:33 +00:00
Fixed f-string for old snakes
This commit is contained in:
parent
b1f522277c
commit
7506caa0da
1 changed files with 1 additions and 1 deletions
|
|
@ -2571,7 +2571,7 @@ class NomadNetworkNode():
|
|||
first = str(labels[0])[:12]
|
||||
last = str(labels[-1])[:12]
|
||||
mid_space = len(bottom) - len(first) - len(last)
|
||||
lines.append(f"{self.CLR_DIM}{first}{" " * mid_space}{last}`f\n")
|
||||
lines.append(f"{self.CLR_DIM}{first}{' ' * mid_space}{last}`f\n")
|
||||
|
||||
return "".join(lines)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue