index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-06-02 16:51:57 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-06-02 16:52:26 -0400 |
commit | f88da816456af4c2516c678cca74a85072d8d5f1 (patch) | |
tree | 668c17d129eec12925f418cc01ab6f1d3bbef9c4 /archinstall/lib/user_interaction.py | |
parent | 7b0863f2899812607f064c0b76c9347410302726 (diff) |
-rw-r--r-- | archinstall/lib/user_interaction.py | 3 |
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py index 79919658..004d81be 100644 --- a/archinstall/lib/user_interaction.py +++ b/archinstall/lib/user_interaction.py @@ -575,7 +575,8 @@ def select_profile(): if len(shown_profiles) >= 1: for index, profile in enumerate(shown_profiles): - print(f"{index}: {profile}") + description = Profile(None, profile).get_profile_description() + print(f"{index}: {profile}: {description}") print(' -- The above list is a set of pre-programmed profiles. --') print(' -- They might make it easier to install things like desktop environments. --') |