Re-add lost "!" prefix on stderr prefix

This commit is contained in:
jesopo 2018-10-02 17:48:07 +01:00
parent e27c0e0a0c
commit 22740e2faa

View file

@ -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"})