summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-25 19:38:47 +0000
committerMike Fulbright <msf@redhat.com>2001-07-25 19:38:47 +0000
commit21969f123e8521a50b7fec6b1105bdb55d16959b (patch)
tree95fa46a486d5b22e138e6e7e0d1fceaf3983cc04 /iw
parente65b95fd5b86816a1749ee2d2b2222e8123dfdcf (diff)
downloadanaconda-21969f123e8521a50b7fec6b1105bdb55d16959b.tar.gz
anaconda-21969f123e8521a50b7fec6b1105bdb55d16959b.tar.xz
anaconda-21969f123e8521a50b7fec6b1105bdb55d16959b.zip
fix error messages when writing boot floppy fails
Diffstat (limited to 'iw')
-rw-r--r--iw/bootdisk_gui.py23
1 files changed, 10 insertions, 13 deletions
diff --git a/iw/bootdisk_gui.py b/iw/bootdisk_gui.py
index 029a9740b..e627a6d2c 100644
--- a/iw/bootdisk_gui.py
+++ b/iw/bootdisk_gui.py
@@ -51,19 +51,16 @@ class BootdiskWindow (InstallWindow):
label = None
- if dir == DISPATCH_FORWARD:
- text = _("The boot disk allows you to boot your Red Hat "
- "Linux system from a floppy diskette.\n\n"
- "Please remove any diskettes from the floppy drive and "
- "insert a blank diskette. All data will be ERASED "
- "during creation of the boot disk.")
- if fsset.rootOnLoop():
- text = text + _("\n\nA boot disk is REQUIRED to boot a "
- "partitionless install.")
- else:
- text = _("An error occured while making the boot disk. "
- "Please make sure that there is a formatted floppy "
- "in the first floppy drive.")
+ text = _("The boot disk allows you to boot your Red Hat "
+ "Linux system from a floppy diskette.\n\n"
+ "Please remove any diskettes from the floppy drive and "
+ "insert a blank diskette. All data will be ERASED "
+ "during creation of the boot disk.")
+
+ if fsset.rootOnLoop():
+ text = text + _("\n\nA boot disk is REQUIRED to boot a "
+ "partitionless install.")
+
label = GtkLabel (text)
label.set_line_wrap (TRUE)