From f9474e59db00ba7fb61d7d67ca384bcef49aaa7f Mon Sep 17 00:00:00 2001 From: Helmut Merz Date: Sun, 12 Oct 2025 10:02:27 +0200 Subject: [PATCH] fix normalize_name --- loops/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loops/common.py b/loops/common.py index 8841b72..84a8698 100644 --- a/loops/common.py +++ b/loops/common.py @@ -256,7 +256,7 @@ def normalizeName(baseName): continue if ord(x) > 127: # map to ASCII characters - c = chr(ord(x) & 127).decode('ISO8859-15') + c = bytes([ord(x) & 127]).decode('ISO8859-15') if c in ':,/\\ ': # replace separator characters with _ result.append('_')