aboutsummaryrefslogtreecommitdiff
path: root/modules/github
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-26 10:53:14 +0000
committerGravatar jesopo2019-01-26 10:53:14 +0000
commit506aef63665ac92b16ba49f6064e85be6ed90245 (patch)
tree032e35922105cbe20fb0cff437e149d3f94e9780 /modules/github
parentAdd a setting to insert zero width characters in to highlights (github) (diff)
signature
Actually use the output of _prevent_highlight (github)
Diffstat (limited to 'modules/github')
-rw-r--r--modules/github/module.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github/module.py b/modules/github/module.py
index 9de3b144..c8b7c4f9 100644
--- a/modules/github/module.py
+++ b/modules/github/module.py
@@ -331,7 +331,7 @@ class Module(ModuleManager.BaseModule):
source = full_name or organisation
output = "(%s) %s" % (source, output)
if channel.get_setting("github-prevent-highlight", False):
- self._prevent_highlight(channel, output)
+ output = self._prevent_highlight(channel, output)
self.events.on("send.stdout").call(target=channel,
module_name="Github", server=server, message=output,