Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-03-28 16:13:26 +0200
committerAnton Hvornum <anton@hvornum.se>2022-03-28 16:13:26 +0200
commite873e30c39a29076f883a4ea8efbe05456b95b2d (patch)
treef2a071f463b18978a6ebdcad7731c031e1cf49c8
parentfe164a700cb71901279e5848f43cb70a534d2ad6 (diff)
Fixed an import of not yet loaded module
-rw-r--r--archinstall/lib/menu/selection_menu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/menu/selection_menu.py b/archinstall/lib/menu/selection_menu.py
index 7c79a8b0..dcc87fb0 100644
--- a/archinstall/lib/menu/selection_menu.py
+++ b/archinstall/lib/menu/selection_menu.py
@@ -16,7 +16,6 @@ from ..general import (
from ..hardware import has_uefi
from ..profiles import is_desktop_profile
from ..disk.helpers import encrypted_partitions
-from ..user_interaction.general_conf import select_profile
from ..user_interaction.system_conf import (
select_harddrives,
select_kernel,
@@ -30,7 +29,8 @@ from ..user_interaction.general_conf import (
ask_additional_packages_to_install,
ask_for_audio_selection,
ask_hostname,
- select_mirror_regions
+ select_mirror_regions,
+ select_profile
)
from ..user_interaction.utils import get_password
from ..user_interaction.network_conf import ask_to_configure_network