From 9c092f726bb92061b9b161a8c5870460e8ad7364 Mon Sep 17 00:00:00 2001 From: fazalpsinfo-cmyk Date: Mon, 20 Jul 2026 14:24:10 +0530 Subject: [PATCH] fix: replace deprecated Logger.warn() with Logger.warning() --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 35bc1fc..7c225e2 100755 --- a/main.py +++ b/main.py @@ -70,13 +70,13 @@ def install_app(args): if arch == "x86_64": install_list.append(Ndk(args.android_version)) else: - Logger.warn("libndk is not supported on your CPU") + Logger.warning("libndk is not supported on your CPU") if "libhoudini" in app and "ndk" not in app: arch = helper.host()[0] if arch == "x86_64": install_list.append(Houdini(args.android_version)) else: - Logger.warn("libhoudini is not supported on your CPU") + Logger.warning("libhoudini is not supported on your CPU") if "magisk" in app: install_list.append(Magisk()) if "widevine" in app: