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