utils.irc.bold needs to be given an empty string
This commit is contained in:
parent
b27bffaa50
commit
f6b68815c9
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
hide_prefix=channel.get_setting("github-hide-prefix", False))
|
hide_prefix=channel.get_setting("github-hide-prefix", False))
|
||||||
|
|
||||||
def _change_count(self, n, symbol, color):
|
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):
|
def _added(self, n):
|
||||||
return self._change_count(n, "+", utils.consts.GREEN)
|
return self._change_count(n, "+", utils.consts.GREEN)
|
||||||
def _removed(self, n):
|
def _removed(self, n):
|
||||||
|
|
Loading…
Reference in a new issue