From e0040c1c5240332dad5ed6ed8aea6c7f57da6ded Mon Sep 17 00:00:00 2001 From: missytake Date: Mon, 25 Aug 2025 14:58:03 +0200 Subject: [PATCH] tests: fix output capture --- cmdeploy/src/cmdeploy/cmdeploy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmdeploy/src/cmdeploy/cmdeploy.py b/cmdeploy/src/cmdeploy/cmdeploy.py index 1fc24b15..2576a98b 100644 --- a/cmdeploy/src/cmdeploy/cmdeploy.py +++ b/cmdeploy/src/cmdeploy/cmdeploy.py @@ -46,10 +46,10 @@ def init_cmd(args, out): inipath = args.inipath if args.inipath.exists(): if not args.recreate_ini: - out.green(f"[WARNING] Path exists, not modifying: {inipath}") + print(f"[WARNING] Path exists, not modifying: {inipath}") return 1 else: - out.yellow(f"[WARNING] Force argument was provided, deleting config file: {inipath}") + print(f"[WARNING] Force argument was provided, deleting config file: {inipath}") inipath.unlink() return 0