From 844e4fe601916e1ef20a57362dc3083c56ad6006 Mon Sep 17 00:00:00 2001 From: Official-Husko Date: Mon, 1 Jul 2024 13:00:30 +0200 Subject: [PATCH] fix green text for real now --- modules/config_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config_manager.py b/modules/config_manager.py index 4dba4c9..a45a28d 100644 --- a/modules/config_manager.py +++ b/modules/config_manager.py @@ -74,7 +74,7 @@ def Writer(): } with open("config.json", "w") as cfg_file: json.dump(template, cfg_file, indent=6) - print(colored(f"{info} New config file generated! Configure it and restart the program or wait 5 seconds and the program will continue with the default values.", "green")) + print(f'{info} {colored("New config file generated! Configure it and restart the program or wait 5 seconds and the program will continue with the default values.", "green")}') print("") sleep(5) return template