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/disk/filesystem.py | |
parent | b2fc71c9e5b3df3658ff12ed9a8f0d3c09a21136 (diff) |
-rw-r--r-- | archinstall/lib/disk/filesystem.py | 2 |
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index 1e722ce5..1083df53 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -113,7 +113,7 @@ class Filesystem: format_options = partition.get('options',[]) + partition.get('filesystem',{}).get('format_options',[]) disk_encryption: DiskEncryption = storage['arguments'].get('disk_encryption') - if disk_encryption and partition in disk_encryption.partitions: + if disk_encryption and partition in disk_encryption.all_partitions: if not partition['device_instance']: raise DiskError(f"Internal error caused us to loose the partition. Please report this issue upstream!") |