Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-09-06 15:45:53 +0200
committerGitHub <noreply@github.com>2021-09-06 15:45:53 +0200
commit355f502d806d4f3d7208da3516245d67d5f99c7c (patch)
tree8c272b03e73f063db14f8a30b6cbd4a693776732 /archinstall/lib
parent000eb146689c98299b5eed22999698e55baf9681 (diff)
parent64e6b7b4565f3f8e72cadd53b82744588c641d68 (diff)
Merge pull request #610 from luckspt/patch-2
Typo
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/disk.py2
1 files changed, 1 insertions, 1 deletions
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: