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: