From 8edf89da53bdf17eb09d1d029863ee5eff8148c7 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Tue, 1 Mar 2022 09:59:59 -0600 Subject: [PATCH] git_webhooks/github.py: fix `ping()` --- modules/git_webhooks/github.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git_webhooks/github.py b/modules/git_webhooks/github.py index d516dbca..2e94f991 100755 --- a/modules/git_webhooks/github.py +++ b/modules/git_webhooks/github.py @@ -178,7 +178,7 @@ class GitHub(object): return utils.datetime.parse.iso8601(s) def ping(self, data): - return ["Received new webhook"] + return [("Received new webhook", None)] def _change_count(self, n, symbol, color): return utils.irc.color("%s%d" % (symbol, n), color)+utils.irc.bold("")