summaryrefslogtreecommitdiffstats
path: root/text.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 /text.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 'text.py')
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index 4b56706b3..5b18e839d 100644
--- a/text.py
+++ b/text.py
@@ -81,7 +81,7 @@ if iutil.getArch() == 'sparc':
stepToClasses["bootloader"] = ("silo_text", ("SiloAppendWindow",
"SiloWindow"
"SiloImagesWindow"))
-if iutil.getArch() == 's390' or iutil.getArch() == 's390x':
+if iutil.getArch() == 's390':
stepToClasses["bootloader"] = ("zipl_text", ( "ZiplWindow"))
class InstallWindow: