From 86f17911a5f61fc3b5926fb063c9b9a49bbef145 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Tue, 8 Oct 2024 17:30:52 +0700 Subject: [PATCH] Fix undefined variable error --- Scripts/compatibility_checker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/compatibility_checker.py b/Scripts/compatibility_checker.py index c9ee4ea..cd18847 100644 --- a/Scripts/compatibility_checker.py +++ b/Scripts/compatibility_checker.py @@ -218,7 +218,7 @@ class CompatibilityChecker: self.check_sd_controller_compatibility(hardware_report) if self.max_supported_macos_version[0] == -1: - self.u.request_input("Your hardware is not compatible with macOS!") - self.u.exit_program() + self.utils.request_input("Your hardware is not compatible with macOS!") + self.utils.exit_program() return (".".join(str(item) for item in self.min_supported_macos_version), ".".join(str(item) for item in self.max_supported_macos_version)), self.unsupported_devices \ No newline at end of file