index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Daniel Girtler <blackrabbit256@gmail.com> | 2023-03-29 21:48:11 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 12:48:11 +0200 |
commit | 83f4b4178fae83f9fae3dd0a7ac333957acd0c3f (patch) | |
tree | 913f6abea842bfb350d6fbc02f8bbceb38bdb375 /archinstall/lib/menu | |
parent | b2fc71c9e5b3df3658ff12ed9a8f0d3c09a21136 (diff) |
-rw-r--r-- | archinstall/lib/menu/global_menu.py | 4 |
diff --git a/archinstall/lib/menu/global_menu.py b/archinstall/lib/menu/global_menu.py index f0062b4c..7c5b153e 100644 --- a/archinstall/lib/menu/global_menu.py +++ b/archinstall/lib/menu/global_menu.py @@ -279,8 +279,8 @@ class GlobalMenu(AbstractMenu): output = str(_('Encryption type')) + f': {enc_type}\n' output += str(_('Password')) + f': {secret(encryption.encryption_password)}\n' - if encryption.partitions: - output += 'Partitions: {} selected'.format(len(encryption.partitions)) + '\n' + if encryption.all_partitions: + output += 'Partitions: {} selected'.format(len(encryption.all_partitions)) + '\n' if encryption.hsm_device: output += f'HSM: {encryption.hsm_device.manufacturer}' |