diff options
| author | 2018-11-17 08:21:40 +0000 | |
|---|---|---|
| committer | 2018-11-17 08:21:40 +0000 | |
| commit | f6b68815c96bbab99add2d96e3b4bfd8fdd3fa64 (patch) | |
| tree | 81df735bbe6aba5835fb689e8be18ad5e74e7c3e /modules/github.py | |
| parent | Typo in modules/github.py, 'const' -> 'consts' (diff) | |
| signature | ||
utils.irc.bold needs to be given an empty string
Diffstat (limited to 'modules/github.py')
| -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 c43b9cb4..801ebdce 100644 --- a/modules/github.py +++ b/modules/github.py @@ -67,7 +67,7 @@ class Module(ModuleManager.BaseModule): hide_prefix=channel.get_setting("github-hide-prefix", False)) def _change_count(self, n, symbol, color): - return utils.irc.color("%s%d" % (symbol, n), color)+utils.irc.bold() + return utils.irc.color("%s%d" % (symbol, n), color)+utils.irc.bold("") def _added(self, n): return self._change_count(n, "+", utils.consts.GREEN) def _removed(self, n): |
