diff options
| author | 2018-10-02 17:48:07 +0100 | |
|---|---|---|
| committer | 2018-10-02 17:48:07 +0100 | |
| commit | 22740e2faac7372923571defa5976a638f13321b (patch) | |
| tree | e62c8295bce938534b433213aa9c968a072165b8 | |
| parent | Simplify modules/line_handler.handle (diff) | |
| signature | ||
Re-add lost "!" prefix on stderr prefix
| -rw-r--r-- | modules/commands.py | 2 |
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"}) |
