From 1676b5c26d998d290e10f3dfe88e2c7ec5012447 Mon Sep 17 00:00:00 2001 From: "Leonov Artur (Depish)" Date: Tue, 14 Jan 2025 17:45:35 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20+=20=D0=B8=D1=81=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B2=D1=8B=D0=B2?= =?UTF-8?q?=D0=BE=D0=B4=D0=B0=20=D1=83=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=BD?= =?UTF-8?q?=D1=8B=D1=85=20=D1=84=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- updater/updater.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/updater/updater.py b/updater/updater.py index 29d5471..4d7727b 100644 --- a/updater/updater.py +++ b/updater/updater.py @@ -42,6 +42,9 @@ def download_file(filename: str, dest: Path): ACTUAL_MODS: list["str"] = get_mod_list() +print(f"Актуальные моды: {ACTUAL_MODS}\n\n") +print(f"Текущие моды: {CURRENT_MODS}\n\n") + TO_DELETE: list["Path"] = [] TO_DOWNLOAD: list["str"] = [] @@ -60,7 +63,7 @@ for amod in ACTUAL_MODS: # Удаление лишнего for file in TO_DELETE: - print(f"Удаление {amod}") + print(f"Удаление {file}") os.remove(str(file)) # Скачивание нужного