aboutsummaryrefslogtreecommitdiff
path: root/modules/github.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-10 22:24:04 +0000
committerGravatar jesopo2019-01-10 22:24:04 +0000
commit2f7410066683544247663686ff8f98db2e1342ab (patch)
tree4b19b5f6df89846efdde66b39d2ad31b456f15fb /modules/github.py
parentSend a notice to a channel when a new webhook registration is received (diff)
signature
Don't have duplicate repo full name in `ping` events (github.py)
Diffstat (limited to 'modules/github.py')
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index ce7896bd..cf10f86a 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -196,7 +196,7 @@ class Module(ModuleManager.BaseModule):
return url
def ping(self, event, full_name, data):
- return ["Received new webhook for %s" % full_name]
+ return ["Received new webhook"]
def _change_count(self, n, symbol, color):
return utils.irc.color("%s%d" % (symbol, n), color)+utils.irc.bold("")