From 79ac95d8a8126591905eb4a14c87c34b356abf70 Mon Sep 17 00:00:00 2001 From: Jon Janego Date: Mon, 23 Feb 2026 11:50:03 -0600 Subject: [PATCH] Fix syntax error with '=' in format specifier --- python/ql/lib/change-notes/released/6.1.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ql/lib/change-notes/released/6.1.1.md b/python/ql/lib/change-notes/released/6.1.1.md index ca4d1bf4684..a880762af11 100644 --- a/python/ql/lib/change-notes/released/6.1.1.md +++ b/python/ql/lib/change-notes/released/6.1.1.md @@ -7,4 +7,4 @@ ### Bug Fixes -- Using `=` as a fill character in a format specifier (e.g `f"{x:=^20}"`) now no longer results in a syntax error during parsing. +- Using `=` as a fill character in a format specifier (e.g. `f"{x:=^20}"`) now no longer results in a syntax error during parsing.