summaryrefslogtreecommitdiffstats
path: root/pyanaconda/iutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyanaconda/iutil.py')
-rw-r--r--pyanaconda/iutil.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyanaconda/iutil.py b/pyanaconda/iutil.py
index 66024c5a3..dbc7c3ba6 100644
--- a/pyanaconda/iutil.py
+++ b/pyanaconda/iutil.py
@@ -183,7 +183,8 @@ def mkdirChain(dir):
def isConsoleOnVirtualTerminal():
# XXX PJFIX is there some way to ask the kernel this instead?
- if isS390():
+ # XXX we don't want to have to import storage from here
+ if os.uname()[4].startswith("s390"):
return False
return not flags.serial