Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 3b2e3bd1..d2d30c85 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -186,7 +186,7 @@ class Installer:
for partition in layouts[blockdevice]['partitions']:
mountpoints[partition['mountpoint']] = partition
- for mountpoint in sorted(mountpoints.keys()):
+ for mountpoint in sorted([mnt_dest for mnt_dest in mountpoints.keys() if mnt_dest != None]):
partition = mountpoints[mountpoint]
if partition.get('encrypted', False):