aboutsummaryrefslogtreecommitdiff
path: root/modules/commands.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-24 12:28:33 +0100
committerGravatar GitHub2018-09-24 12:28:33 +0100
commit7522b0fae22c41c8e57d5494a239c97736e2c2b6 (patch)
tree0da6d00ce4bb86ddc88acff85ef6e3ef3f7fba4b /modules/commands.py
parentAsk for alias of first server in start.py (diff)
parentMerge pull request #1 from jesopo/master (diff)
Merge pull request #23 from dngfx/master
Make tweets say Twitter instead of tweets, and update ducks
Diffstat (limited to 'modules/commands.py')
-rw-r--r--modules/commands.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/commands.py b/modules/commands.py
index f0068c57..9df70ffc 100644
--- a/modules/commands.py
+++ b/modules/commands.py
@@ -29,7 +29,8 @@ class Out(object):
].decode("utf8").lstrip())
else:
self._text = ""
- self.target.send_message(text, prefix="[%s] " % self.prefix())
+ self.target.send_message(text, prefix=Utils.FONT_RESET + "[%s] " %
+ self.prefix())
def set_prefix(self, prefix):
self.module_name = prefix
def has_text(self):