From 74ba8fb3b4de76d1226171a2b50e52dc2e799ec3 Mon Sep 17 00:00:00 2001 From: Daniel E Rodriguez Rivera <134472520+ddx2tb@users.noreply.github.com> Date: Tue, 30 Jul 2024 06:55:34 -0500 Subject: [PATCH] Fix call to removed function in DesktopProfile class (#2596) * Update Spanish translation for 'greeter' * Moved the os.execve call below the debug logging statement in SysCommandWorker * Fix call to removed function in DesktopProfile class --- archinstall/default_profiles/desktop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/default_profiles/desktop.py b/archinstall/default_profiles/desktop.py index 30f00618..67c94ef9 100644 --- a/archinstall/default_profiles/desktop.py +++ b/archinstall/default_profiles/desktop.py @@ -62,7 +62,7 @@ class DesktopProfile(Profile): match choice.type_: case menu.MenuSelectionType.Selection: - self.set_current_selection(choice.value) # type: ignore + self.current_selection = choice.value # type: ignore self._do_on_select_profiles() return SelectResult.NewSelection case menu.MenuSelectionType.Skip: