Fixed f-string for old snakes

This commit is contained in:
Mark Qvist
2026-05-17 12:25:21 +02:00
parent b1f522277c
commit 7506caa0da
+1 -1
View File
@@ -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)