diff options
| author | 2019-01-11 20:57:52 +0000 | |
|---|---|---|
| committer | 2019-01-11 20:57:52 +0000 | |
| commit | eadb49d41a9e4c2f4a52586cd5e54ffd21130bdc (patch) | |
| tree | 82929d32415dd341dd4b9bd02add83821848df90 /modules | |
| parent | Karma 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')
| -rw-r--r-- | modules/commands.py | 6 |
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: |
