diff --git a/server/src/common/formatter.py b/server/src/common/formatter.py index 356d887..a5712d4 100644 --- a/server/src/common/formatter.py +++ b/server/src/common/formatter.py @@ -28,7 +28,7 @@ def format_tcl(src: str, indent_str=" ") -> str: continue # 3) SPECIAL: closing brace plus tag on same line: '} Tag' - m = re.match(r"^\}\s+\w+.*", stripped) + m = re.match(r"^\}\s+(\w+.*)", stripped) if m: # close one block level = max(level - 1, 0)