aboutsummaryrefslogtreecommitdiff
path: root/modules/commands.py
diff options
context:
space:
mode:
authorGravatar dngfx2018-09-22 19:10:52 +0100
committerGravatar dngfx2018-09-22 19:10:52 +0100
commitfebb6d66e3fd29c5d18c4c49133b0aef9257f2e1 (patch)
tree033b35544312f72d58fdc08d480aa24125a1832b /modules/commands.py
parentMake tweets say Twitter instead of tweets, and update ducks to add decoys and... (diff)
signature
font reset at the beginning of commands to stop wonkiness with highlighting and fix duck decoys.
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):