diff options
author | Mike Fulbright <msf@redhat.com> | 2001-01-09 17:51:13 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-01-09 17:51:13 +0000 |
commit | e9900a35878dba46a8c6e82dd481ba0f60ad62dd (patch) | |
tree | f4d717e2cdee4cb80ea91d9dabffe8868287061a /iw | |
parent | 97db4bcdc67dc88b3db4405d868f6d97f9a1b276 (diff) | |
download | anaconda-e9900a35878dba46a8c6e82dd481ba0f60ad62dd.tar.gz anaconda-e9900a35878dba46a8c6e82dd481ba0f60ad62dd.tar.xz anaconda-e9900a35878dba46a8c6e82dd481ba0f60ad62dd.zip |
slight changes to lba32warning
Diffstat (limited to 'iw')
-rw-r--r-- | iw/rootpartition_gui.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/rootpartition_gui.py b/iw/rootpartition_gui.py index 743cc552b..97d9d8217 100644 --- a/iw/rootpartition_gui.py +++ b/iw/rootpartition_gui.py @@ -394,7 +394,7 @@ class LBA32WarningWindow(InstallWindow): vbox = GtkVBox (FALSE, 5) - if not self.todo.fstab.edd or 1: + if not self.todo.fstab.edd: label = GtkLabel ( _("You have put the partition containing the kernel (the " "boot partition) above the 1023 cylinder limit, and " @@ -415,7 +415,7 @@ class LBA32WarningWindow(InstallWindow): "booting from above this limit. \n\n" "It is HIGHLY recommended you make a boot floppy when " "asked by the installer, as this is a new feature in " - "recent motherboard and is not always reliable. " + "recent motherboards and is not always reliable. " "Making a boot disk will guarantee you can boot " "your system once installed.")) @@ -424,7 +424,7 @@ class LBA32WarningWindow(InstallWindow): label.set_alignment(0.0, 0.0) vbox.pack_start (label, FALSE, FALSE) - if not self.todo.fstab.edd or 1: + if not self.todo.fstab.edd: vbox2 = GtkVBox (FALSE, 5) self.proceed = GtkRadioButton (None, _("Yes")) |