From c82c7fc555a1e7be306ea61c4eccd56f8cd50647 Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Sun, 20 May 2018 22:56:20 -0500 Subject: [PATCH] Print the commit name too. --- lugito | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lugito b/lugito index 3ef0091..987ab92 100755 --- a/lugito +++ b/lugito @@ -141,6 +141,8 @@ def main(): sendnotice(message) elif data["object"]["type"] == "CMIT": print("It's a commit!") + commitphid = data["object"]["phid"] + print(phab.phid.query(phids=[commitphid])[commitphid]["fullName"]) return "OK"