Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 4c617582..3fd6cfe3 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -326,7 +326,7 @@ class Installer():
# (it could be completely ommitted if we just print /mnt instead)
boot_partition = None
for partition in self.partitions:
- if partition.mountpoint == self.target+'/boot'
+ if partition.mountpoint == self.target+'/boot':
boot_partition = partition
break