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 /iutil.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 'iutil.py')
-rw-r--r-- | iutil.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -33,6 +33,9 @@ def getArch (): if arch == "sparc64": arch = "sparc" + if arch == "s390x": + arch = "s390" + return arch def getfd(filespec, readOnly = 0): |