We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb7492e commit ce00acdCopy full SHA for ce00acd
1 file changed
archinstall/lib/disk/disk_menu.py
@@ -256,8 +256,8 @@ def _prev_disk_encryption(self, item: MenuItem) -> str | None:
256
return tr('LVM disk encryption with more than 2 partitions is currently not supported')
257
258
if enc_config:
259
- enc_type = EncryptionType.type_to_text(enc_config.encryption_type)
260
- output = tr('Encryption type') + f': {enc_type}\n'
+ enc_type = enc_config.encryption_type
+ output = tr('Encryption type') + f': {EncryptionType.type_to_text(enc_type)}\n'
261
262
if enc_config.encryption_password:
263
output += tr('Password') + f': {enc_config.encryption_password.hidden()}\n'
0 commit comments