From 22740e2faac7372923571defa5976a638f13321b Mon Sep 17 00:00:00 2001 From: jesopo Date: Tue, 2 Oct 2018 17:48:07 +0100 Subject: [PATCH] Re-add lost "!" prefix on stderr prefix --- modules/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"})