1
0
forked from finn/tinyboard

syncthing.sh: fix remaining f-string backslash escape in remove_folder

This commit is contained in:
Justin Oros
2026-04-18 18:44:59 -07:00
parent b2932286d0
commit e4db257f53

View File

@@ -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