From 7ba1b9596333fefa75c85313a903239206190f8c Mon Sep 17 00:00:00 2001 From: anulax1225 Date: Wed, 5 Jun 2024 16:20:13 +0200 Subject: [PATCH] Modified log style --- src/Command.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Command.py b/src/Command.py index 9d8a74e..1a16a02 100644 --- a/src/Command.py +++ b/src/Command.py @@ -1,5 +1,7 @@ import os import sys - +from Log import ShColors def exec(command): + print(ShColors.OKGREEN) os.system(f"{command}") + print(ShColors.ENDC)