index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-12-07 15:30:00 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-12-07 15:30:00 +0100 |
commit | 24dfe9738653c1e1b241db2cc665c6cab5eeae75 (patch) | |
tree | 42aa174ee07e067f97fde1ceb8efea029f3f573c /archinstall/lib/disk.py | |
parent | de4471ca68fdf57cb5c6549c09687d44baed3fea (diff) |
-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 |