From e4db257f53f3e57bdd81b46eb9827c5308133c58 Mon Sep 17 00:00:00 2001 From: Justin Oros Date: Sat, 18 Apr 2026 18:44:59 -0700 Subject: [PATCH] syncthing.sh: fix remaining f-string backslash escape in remove_folder --- syncthing.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncthing.sh b/syncthing.sh index 32cb00d..5a30b9d 100755 --- a/syncthing.sh +++ b/syncthing.sh @@ -253,7 +253,7 @@ remove_folder() { import sys, json for i, f in enumerate(json.load(sys.stdin), 1): label = f["label"] or f["id"] - print(f" {i}) {label} ({f[\"path\"]})") + print(" " + str(i) + ") " + label + " (" + f["path"] + ")") ' echo "" read -rp "Choose folder to remove [1-${count}]: " CHOICE