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:
authorAnton Hvornum <anton@hvornum.se>2021-04-09 13:07:08 +0200
committerAnton Hvornum <anton@hvornum.se>2021-04-09 13:07:08 +0200
commit72ad1ad5e0765f12fef5ea27a5c8dcb290c5b682 (patch)
tree8c3993fe73b72e40885832bfdb393afb863851bc /archinstall/lib/installer.py
parent56239d89b58a6ee7bc3d0c299833a8aa6635ae79 (diff)
Fixed some log output logic for the boot partition.
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 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