diff options
| author | 2018-11-07 11:27:34 +0000 | |
|---|---|---|
| committer | 2018-11-07 11:27:34 +0000 | |
| commit | 773412cdb0cee2afcca15bc6904c3cc23bea19bc (patch) | |
| tree | bf6b0a1675ebd05a3f58c31382ed7590eff68656 /modules/github.py | |
| parent | Add ability to hide [Prefix] from command outputs (diff) | |
| signature | ||
Hide [Github] prefix in modules/github.py
Diffstat (limited to 'modules/github.py')
| -rw-r--r-- | modules/github.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/github.py b/modules/github.py index 45b29161..f1c8d780 100644 --- a/modules/github.py +++ b/modules/github.py @@ -58,8 +58,8 @@ class Module(ModuleManager.BaseModule): return True def _make_trigger(self, channel, server, line): - return lambda: self.events.on("send.stdout").call( - target=channel, module_name="Github", server=server, message=line) + return lambda: self.events.on("send.stdout").call(target=channel, + module_name="Github", server=server, message=line, hide_prefix=True) def push(self, event, full_name, data): outputs = [] |
