From e9900a35878dba46a8c6e82dd481ba0f60ad62dd Mon Sep 17 00:00:00 2001 From: Mike Fulbright Date: Tue, 9 Jan 2001 17:51:13 +0000 Subject: slight changes to lba32warning --- iw/rootpartition_gui.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'iw') 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")) -- cgit