From 193c3ad329990c062771acbc1ea15e56b83b9cf3 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Mon, 16 Mar 2026 09:42:24 +0200 Subject: [PATCH] fix(MAT-174): Python 3.11 backslash-in-fstring compat Co-Authored-By: Claude Opus 4.6 (1M context) --- cron/formatter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cron/formatter.py b/cron/formatter.py index 23dd295..360271f 100644 --- a/cron/formatter.py +++ b/cron/formatter.py @@ -46,7 +46,8 @@ def format_listings(job_name: str, listings: list[dict]) -> str: if url: details.append(f"[View listing]({url})") if details: - lines.append(f" {' \u00b7 '.join(details)}") + sep = " \u00b7 " + lines.append(f" {sep.join(details)}") lines.append("") lines.append(