From 5db862d38b9cafd33e80d847ff6fb1ad0cd024a5 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Mon, 6 Nov 2023 09:23:29 -0700 Subject: [PATCH] gui_cache: Use new `check_backups_only` property --- resources/wx_gui/gui_cache_os_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/wx_gui/gui_cache_os_update.py b/resources/wx_gui/gui_cache_os_update.py index 01ff32153..83888adc0 100644 --- a/resources/wx_gui/gui_cache_os_update.py +++ b/resources/wx_gui/gui_cache_os_update.py @@ -43,7 +43,7 @@ class OSUpdateFrame(wx.Frame): self.kdk_obj: kdk_handler.KernelDebugKitObject = None def _kdk_thread_spawn(): - self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True) + self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True, check_backups_only=True) kdk_thread = threading.Thread(target=_kdk_thread_spawn) kdk_thread.start()