index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/disk.py | 2 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index a0ba3742..002dfe49 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -222,7 +222,7 @@ class Filesystem(): def add_partition(self, type, start, end, format=None): log(f'Adding partition to {self.blockdevice}', level=LOG_LEVELS.Info, file=storage.get('logfile', None)) if format: - paritioning = self.parted(f'{self.blockdevice.device} mkpart {type} {format} {start} {end}') == 0: + paritioning = self.parted(f'{self.blockdevice.device} mkpart {type} {format} {start} {end}') == 0 else: paritioning = self.parted(f'{self.blockdevice.device} mkpart {type} {start} {end}') == 0 |