From 2a158b44db4aecf4abbc8eac68f1ac9d0a83cf3e Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Thu, 11 Jul 2024 17:59:10 +0100 Subject: [PATCH] Force `contact: ` label in docs --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 5d069b3..ffa593c 100644 --- a/src/main.py +++ b/src/main.py @@ -28,7 +28,7 @@ except FileNotFoundError: def get_contact_details(): - v = {"name": os.getenv("CONTACT_NAME", "not specified")} + v = {"name": "Contact: %s" % os.getenv("CONTACT_NAME", "not specified")} if (email := os.getenv("CONTACT_EMAIL")) is not None: v["email"] = email if (url := os.getenv("CONTACT_URL")) is not None: