index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Lucas Pinto <30878914+luckspt@users.noreply.github.com> | 2021-07-28 01:35:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 01:35:26 +0100 |
commit | 64e6b7b4565f3f8e72cadd53b82744588c641d68 (patch) | |
tree | 2201c73ef820f9e878ee3f1a020fdd5b9da6642a /archinstall | |
parent | 3a4076419418dcdac538c543903cfc6e16bde35f (diff) |
-rw-r--r-- | archinstall/lib/disk.py | 2 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index de39bafd..485d5d5c 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -531,7 +531,7 @@ class Filesystem: previous_partitions = self.blockdevice.partitions if self.mode == MBR: if len(self.blockdevice.partitions) > 3: - DiskError("Too many partitions on disk, MBR disks can only have 3 parimary partitions") + DiskError("Too many partitions on disk, MBR disks can only have 3 primary partitions") if partition_format: partitioning = self.parted(f'{self.blockdevice.device} mkpart {partition_type} {partition_format} {start} {end}') == 0 else: |