summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-01-09 00:53:27 +0000
committerJeremy Katz <katzj@redhat.com>2002-01-09 00:53:27 +0000
commit09bb99f8845738fe2a23a45d2505493d61480b5a (patch)
treef85ebd1beaed4dbd28766b85c05871bb53cac518 /gui.py
parent46fd98e4e68277e5f11a82e57e94c728d1d1c9b7 (diff)
downloadanaconda-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-xgui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index 6d245209e..e6ac3f3b5 100755
--- a/gui.py
+++ b/gui.py
@@ -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")