diff --git a/wmn.py b/wmn.py
index 5ddf117..e3c792f 100644
--- a/wmn.py
+++ b/wmn.py
@@ -126,11 +126,11 @@ def process_jenkins_request():
html_changes = "\n".join((f"
{msg}" for msg in change_messages))
text_changes = "\n".join((f"- {msg}" for msg in change_messages))
try:
- room.send_html(f"{build_name} completed on project {project_name} with result "
- f"{result_type}, "
+ room.send_html(f"Build {build_name} completed on project {project_name} with result "
+ f"{result_type}, "
f"{len(change_messages)} commits
\n"
f"\n",
- body=f"{build_name} completed on project {project_name} with result {result_type}\n"
+ body=f"Build {build_name} completed on project {project_name} with result {result_type}\n"
f"{text_changes}\n",
msgtype="m.notice")
except MatrixRequestError as e: