aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-02 17:48:07 +0100
committerGravatar jesopo2018-10-02 17:48:07 +0100
commit22740e2faac7372923571defa5976a638f13321b (patch)
treee62c8295bce938534b433213aa9c968a072165b8 /modules
parentSimplify modules/line_handler.handle (diff)
signature
Re-add lost "!" prefix on stderr prefix
Diffstat (limited to 'modules')
-rw-r--r--modules/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands.py b/modules/commands.py
index 29e23e46..836377c9 100644
--- a/modules/commands.py
+++ b/modules/commands.py
@@ -51,7 +51,7 @@ class StdOut(Out):
return Utils.color(Utils.bold(self.module_name), Utils.COLOR_GREEN)
class StdErr(Out):
def prefix(self):
- return Utils.color(Utils.bold(self.module_name), Utils.COLOR_RED)
+ return Utils.color(Utils.bold("!"+self.module_name), Utils.COLOR_RED)
@Utils.export("channelset", {"setting": "command-prefix",
"help": "Set the command prefix used in this channel"})