From b5e5dd82f2ccd4a4696e4642e2e4294347641e6f Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 6 May 2020 21:56:43 +0200 Subject: [PATCH] [fix] actually login is better --- server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.py b/server.py index d96b4fe..214f7b7 100644 --- a/server.py +++ b/server.py @@ -461,11 +461,11 @@ async def github(request): user = request.json["sender"]["login"] url = request.json["commit"]["html_url"] commit_message = request.json["commit"]["commit"]["message"] - commit_author = request.json["commit"]["committer"]["name"] + commit_author = request.json["commit"]["committer"]["login"] if state not in ("success", "pending"): await notify( - f'[{repository}] {description} {target_url} on commit {url} "{commit_message.replace("\n", " ")}" by {commit_author}' + f'[{repository}] {description} {target_url} on commit {url} "{commit_message.replace("\n", " ")}" by @{commit_author}' ) else: print(