From 94ac8ba3ef4aeb1c8e10e18247a7a09bf6d78168 Mon Sep 17 00:00:00 2001 From: Nicolas KAROLAK <nicolas@karolak.fr> Date: Wed, 12 Sep 2018 17:27:45 +0200 Subject: [PATCH] fix(utils): info color --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 06296725..f396c951 100644 --- a/utils.py +++ b/utils.py @@ -40,7 +40,7 @@ def info(message: str): :type message: str """ - print(" {}🛈{} {}".format(GREEN, DEF, message)) + print(" {}🛈{} {}".format(BLUE, DEF, message)) def success(message: str): -- GitLab