From c1fea03faf0c2f1dde4fa766f67f13f8ca95e7b8 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sun, 14 Jun 2020 23:27:05 +0200 Subject: [PATCH] [fix] bad key path --- server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.py b/server.py index 83a03d4..1cd309a 100644 --- a/server.py +++ b/server.py @@ -464,7 +464,7 @@ async def github(request): if request.json["commit"]["committer"]: commit_author = request.json["commit"]["committer"]["name"] else: - commit_author = request.json["commit"]["author"]["name"] + commit_author = request.json["commit"]["commit"]["author"]["name"] branches = ", ".join((x["name"] for x in request.json["branches"])) if state not in ("success", "pending"):