Merge pull request #610 from luckspt/patch-2

Typo
This commit is contained in:
Anton Hvornum 2021-09-06 15:45:53 +02:00 committed by GitHub
commit 355f502d80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: