From 75d9369452cac0ec2a1f2009d6dcde1846049dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Thu, 8 Aug 2024 14:47:58 +0200 Subject: [PATCH] feat: logging --- common/sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/sync.py b/common/sync.py index 40119d1..e69c7bc 100644 --- a/common/sync.py +++ b/common/sync.py @@ -15,9 +15,9 @@ def sync(stuff: list[str]): if os.path.isdir(path): os.makedirs(system_path, exist_ok=True) else: - print(f"Copying {path} to {system_path}") + print(f":: Copying {path} to {system_path}") if os.path.exists(system_path) and not overwrite: - print(f"Path {system_path} already exists. Do you want to overwrite it with {path}? y/n/a") + print(f":: Path {system_path} already exists. Do you want to overwrite it with {path}? y/n/a") ask = input() if ask not in ("y", "a"):