Force contact: label in docs
All checks were successful
Build and Publish / build_and_publish (push) Successful in 28s

This commit is contained in:
Nexus 2024-07-11 17:59:10 +01:00
parent c7155cbd65
commit 2a158b44db
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -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: