diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-07-30 21:55:14 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-07-30 21:55:14 +0000 |
commit | 5dc8a41b5f01f1ac695b8456a7bac223afe11104 (patch) | |
tree | 493d83e0b4fa556ff96ed59cb4b54b0c7cc13796 | |
parent | 94c16dac6c9306e2488766bba72b15ba354eaff0 (diff) | |
download | anaconda-5dc8a41b5f01f1ac695b8456a7bac223afe11104.tar.gz anaconda-5dc8a41b5f01f1ac695b8456a7bac223afe11104.tar.xz anaconda-5dc8a41b5f01f1ac695b8456a7bac223afe11104.zip |
tyop fix (#101316)
-rw-r--r-- | autopart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autopart.py b/autopart.py index 74df933b8..6988004af 100644 --- a/autopart.py +++ b/autopart.py @@ -1007,7 +1007,7 @@ def doPartitioning(diskset, requests, doRefresh = 1): elif ret == BOOTEFI_NOT_VFAT: raise PartitioningError, _("Boot partition %s isn't a VFAT partition. EFI won't be able to boot from this partition.") %(requests.getBootableRequest()[0].mountpoint,) elif ret == BOOTIPSERIES_TOO_HIGH: - raise PartitioningError, _("Boot partition isn't located early enough on the disk. OpenFirmware wan't be able to boot this installation.") + raise PartitioningError, _("Boot partition isn't located early enough on the disk. OpenFirmware won't be able to boot this installation.") elif ret != PARTITION_SUCCESS: # more specific message? raise PartitioningWarning, _("Boot partition %s may not meet booting constraints for your architecture. Creation of a boot disk is highly encouraged.") %(requests.getBootableRequest()[0].mountpoint,) |