Include conference year in email subject
This commit is contained in:
parent
840d39ca35
commit
164a93cd88
2
check.py
2
check.py
|
@ -157,7 +157,7 @@ def check_conference_web_site(name: str, src_url: str, year: int) -> bool:
|
|||
live, msg = check_conference(name, url := src_url.format(year=year))
|
||||
if live:
|
||||
body = f"{name}\n{url}\nWeb page title: {msg}"
|
||||
send_mail(f"Conference site live: {name}", body)
|
||||
send_mail(f"Conference site live: {name} - {year}", body)
|
||||
|
||||
return live
|
||||
|
||||
|
|
Loading…
Reference in a new issue