From d001d6b287022da231a668291e1dce34618b92ec Mon Sep 17 00:00:00 2001 From: coja Date: Sat, 2 May 2026 03:43:43 +0200 Subject: [PATCH] [Prep] location in new tab --- prep.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prep.py b/prep.py index e26839b..0a7a357 100755 --- a/prep.py +++ b/prep.py @@ -59,7 +59,7 @@ def build_html(events: list[dict], dayNames: list[str], typesNames: dict) -> str event_html.append(f"
{title}
") if "https://" in location: place,link = location.split("https://") - event_html.append(f"
@{place.strip()}
") + event_html.append(f"
@{place.strip()}
") else: event_html.append(f"
@{location.strip()}
")