diff options
| author | 2019-01-10 22:24:04 +0000 | |
|---|---|---|
| committer | 2019-01-10 22:24:04 +0000 | |
| commit | 2f7410066683544247663686ff8f98db2e1342ab (patch) | |
| tree | 4b19b5f6df89846efdde66b39d2ad31b456f15fb /modules | |
| parent | Send 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')
| -rw-r--r-- | modules/github.py | 2 |
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("") |
