aboutsummaryrefslogtreecommitdiff
path: root/modules/commands.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-11 20:57:52 +0000
committerGravatar jesopo2019-01-11 20:57:52 +0000
commiteadb49d41a9e4c2f4a52586cd5e54ffd21130bdc (patch)
tree82929d32415dd341dd4b9bd02add83821848df90 /modules/commands.py
parentKarma is now being used as karma_str, thus we need a %s not a %d (karma.py) (diff)
signature
Don't use bolding for command colors (commands.py)
Diffstat (limited to 'modules/commands.py')
-rw-r--r--modules/commands.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/modules/commands.py b/modules/commands.py
index 662d2581..12833678 100644
--- a/modules/commands.py
+++ b/modules/commands.py
@@ -68,12 +68,10 @@ class Out(object):
class StdOut(Out):
def prefix(self):
- return utils.irc.color(utils.irc.bold(self.module_name),
- utils.consts.GREEN)
+ return utils.irc.color(self.module_name, utils.consts.LIGHTGREEN)
class StdErr(Out):
def prefix(self):
- return utils.irc.color(utils.irc.bold("!"+self.module_name),
- utils.consts.RED)
+ return utils.irc.color("!"+self.module_name, utils.consts.RED)
def _command_method_validate(s):
if s.upper() in COMMAND_METHODS: