Fixed some log output logic for the boot partition.

This commit is contained in:
Anton Hvornum 2021-04-09 13:07:08 +02:00
parent 56239d89b5
commit 72ad1ad5e0
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 1 additions and 1 deletions

View File

@ -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