diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-01-09 00:53:27 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-01-09 00:53:27 +0000 |
commit | 09bb99f8845738fe2a23a45d2505493d61480b5a (patch) | |
tree | f85ebd1beaed4dbd28766b85c05871bb53cac518 /gui.py | |
parent | 46fd98e4e68277e5f11a82e57e94c728d1d1c9b7 (diff) | |
download | anaconda-09bb99f8845738fe2a23a45d2505493d61480b5a.tar.gz anaconda-09bb99f8845738fe2a23a45d2505493d61480b5a.tar.xz anaconda-09bb99f8845738fe2a23a45d2505493d61480b5a.zip |
iutil.getArch now returns s390 for s390x, clean up to handle this nicely
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ stepToClass = { if iutil.getArch() == 'sparc': stepToClass["bootloader"] = ("silo_gui", "SiloWindow") -elif iutil.getArch() == 's390' or iutil.getArch() == 's390x': +elif iutil.getArch() == 's390': stepToClass["bootloader"] = ("zipl_gui", "ZiplWindow") else: stepToClass["bootloader"] = ("bootloader_gui", "BootloaderWindow") |