Re-add lost "!" prefix on stderr prefix
This commit is contained in:
parent
e27c0e0a0c
commit
22740e2faa
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class StdOut(Out):
|
||||||
return Utils.color(Utils.bold(self.module_name), Utils.COLOR_GREEN)
|
return Utils.color(Utils.bold(self.module_name), Utils.COLOR_GREEN)
|
||||||
class StdErr(Out):
|
class StdErr(Out):
|
||||||
def prefix(self):
|
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",
|
@Utils.export("channelset", {"setting": "command-prefix",
|
||||||
"help": "Set the command prefix used in this channel"})
|
"help": "Set the command prefix used in this channel"})
|
||||||
|
|
Loading…
Reference in a new issue