diff options
author | Matt Wilson <msw@redhat.com> | 2003-01-15 01:12:09 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2003-01-15 01:12:09 +0000 |
commit | 4ef08490cbb27c4e525f446119863707cbadecb8 (patch) | |
tree | d37d0bbb227c9bcb12aacd58e3ed6cdc2dce683d /iw | |
parent | 7aa5a5d7489a64c1a12a2bc8ff8327a60edc68cc (diff) | |
download | anaconda-4ef08490cbb27c4e525f446119863707cbadecb8.tar.gz anaconda-4ef08490cbb27c4e525f446119863707cbadecb8.tar.xz anaconda-4ef08490cbb27c4e525f446119863707cbadecb8.zip |
take bill's suggestion of doing boot floppy stuff only on i386
Diffstat (limited to 'iw')
-rw-r--r-- | iw/congrats_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py index 3dfb35b70..319a98b55 100644 --- a/iw/congrats_gui.py +++ b/iw/congrats_gui.py @@ -49,7 +49,7 @@ class CongratulationWindow (InstallWindow): a.set_size_request(200, -1) hbox.pack_start (a, gtk.FALSE, gtk.FALSE, 36) - if not iutil.getArch() in ('ia64', 's390'): + if iutil.getArch() == 'i386': bootstr = _("If you created a boot diskette during this " "installation as your primary means of " "booting %s, insert it before " |