aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-04-30 22:45:52 +0100
committerGravatar jesopo2019-04-30 22:45:52 +0100
commit44b15073e7d183f74794033f86e402a2cced2c29 (patch)
treec66390d7275ea565abed7bb8bf662edd0e59dcb0
parentTypo in commands/outs.py, 'methd' -> 'method' (diff)
signature
No longer prefix stderr with "!", it doesn't really make sense
-rw-r--r--modules/commands/outs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py
index 89f49421..0f931247 100644
--- a/modules/commands/outs.py
+++ b/modules/commands/outs.py
@@ -59,5 +59,5 @@ class StdOut(Out):
return utils.irc.color(self.module_name, utils.consts.GREEN)
class StdErr(Out):
def prefix(self):
- return utils.irc.color("!"+self.module_name, utils.consts.RED)
+ return utils.irc.color(self.module_name, utils.consts.RED)