From 1a73e5bd7862cde7381ec1908c7a3d57122dd286 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 11 Oct 2024 12:10:07 -0500 Subject: [PATCH] actually bb the string --- tunnel-nim/tunnel.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tunnel-nim/tunnel.nim b/tunnel-nim/tunnel.nim index 7e04781..269fbc6 100644 --- a/tunnel-nim/tunnel.nim +++ b/tunnel-nim/tunnel.nim @@ -34,7 +34,7 @@ proc show() = collect(for _,p in walkDir(sshDir): p) .map(extractFilename) .filterIt(it.startsWith("control")) - echo fmt"[yellow]{controllers.len}[/] active connections" + echo bbfmt"[yellow]{controllers.len}[/] active connections" if controllers.len == 0: quit 0 echo "hosts:" echo controllers.mapIt(" " & it.split('-')[1]).join("\n")