aboutsummaryrefslogtreecommitdiff
path: root/modules/commands.py
diff options
context:
space:
mode:
authorGravatar dngfx2018-09-09 03:39:29 +0100
committerGravatar dongfix2018-09-09 03:39:29 +0100
commitc8bbdddc595595336c64bd9a2f8db40e3b851f84 (patch)
tree9ed601ca0659e3a24a6c5e66edb20f36a5e7c74e /modules/commands.py
parentString formatting exists and it is a wonderful thing. (diff)
signature
FONT_RESET should be FONT_COLOR, also more string wizardry in ducks.py!
Diffstat (limited to 'modules/commands.py')
-rw-r--r--modules/commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands.py b/modules/commands.py
index fcd12847..d6b821f0 100644
--- a/modules/commands.py
+++ b/modules/commands.py
@@ -38,11 +38,11 @@ class Out(object):
class StdOut(Out):
def prefix(self):
return "%s%s%s" % (Utils.color(Utils.COLOR_GREEN),
- self.module_name, Utils.FONT_RESET)
+ self.module_name, Utils.FONT_COLOR)
class StdErr(Out):
def prefix(self):
return "%s!%s%s" % (Utils.color(Utils.COLOR_RED),
- self.module_name, Utils.FONT_RESET)
+ self.module_name, Utils.FONT_COLOR)
class Module(object):
def __init__(self, bot, events, exports):