From 5dc5e3fbfdd342dc35e406662d6068e673cd66f6 Mon Sep 17 00:00:00 2001 From: jesopo Date: Thu, 17 Jan 2019 21:10:12 +0000 Subject: [PATCH] LIGHTGREEN -> GREEN for successful commands (commands.py) --- modules/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/commands.py b/modules/commands.py index 12833678..4c2a2acf 100644 --- a/modules/commands.py +++ b/modules/commands.py @@ -68,7 +68,7 @@ class Out(object): class StdOut(Out): def prefix(self): - return utils.irc.color(self.module_name, utils.consts.LIGHTGREEN) + 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)