From 0fc9d6f4f41fcf9d9881c8334633b9a12e13f350 Mon Sep 17 00:00:00 2001 From: Daniel Girtler Date: Wed, 28 Aug 2024 17:41:37 +1000 Subject: [PATCH] Fix 2625 - server profile selection (#2647) --- archinstall/default_profiles/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/default_profiles/server.py b/archinstall/default_profiles/server.py index 8b2f0698..7d157cf3 100644 --- a/archinstall/default_profiles/server.py +++ b/archinstall/default_profiles/server.py @@ -31,7 +31,7 @@ class ServerProfile(Profile): match choice.type_: case MenuSelectionType.Selection: - self.set_current_selection(choice.value) # type: ignore + self.current_selection = choice.value # type: ignore return SelectResult.NewSelection case MenuSelectionType.Skip: return SelectResult.SameSelection