Made positive karma show as LIGHTGREEN, not GREEN (karma.py)
This commit is contained in:
parent
eadb49d41a
commit
e523671633
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
if karma < 0:
|
if karma < 0:
|
||||||
return utils.irc.color(str(karma), utils.consts.RED)
|
return utils.irc.color(str(karma), utils.consts.RED)
|
||||||
elif karma > 0:
|
elif karma > 0:
|
||||||
return utils.irc.color(str(karma), utils.consts.GREEN)
|
return utils.irc.color(str(karma), utils.consts.LIGHTGREEN)
|
||||||
return str(karma)
|
return str(karma)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue