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