index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-09-06 15:45:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-06 15:45:53 +0200 |
commit | 355f502d806d4f3d7208da3516245d67d5f99c7c (patch) | |
tree | 8c272b03e73f063db14f8a30b6cbd4a693776732 /archinstall/lib | |
parent | 000eb146689c98299b5eed22999698e55baf9681 (diff) | |
parent | 64e6b7b4565f3f8e72cadd53b82744588c641d68 (diff) |
-rw-r--r-- | archinstall/lib/disk.py | 2 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index 415f45e6..17ffe762 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -548,7 +548,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: |