From 309ac94f21a8c836ed87a96a9d95d0ce2f05b2b2 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Mon, 19 Sep 2022 22:40:46 -0600 Subject: [PATCH] test invalid char on windows --- datastore/fsds.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/datastore/fsds.nim b/datastore/fsds.nim index a3d7d0d..22c73a2 100644 --- a/datastore/fsds.nim +++ b/datastore/fsds.nim @@ -63,6 +63,7 @@ template allowed*(path: string): bool = var notfound = true for s in path: if s.char notin Allowed: + echo "INVALID CHAR ", s notfound = false break