summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2006-10-23 13:46:37 +0000
committerPaul Nasrat <pnasrat@redhat.com>2006-10-23 13:46:37 +0000
commit52af6fc3720bab4957a08d9f3f262b59138835b6 (patch)
treedf5c64c4ea239b77b4e851a0c2361a312ed040ef /iutil.py
parented870a9938f275fd77bf97af57b89c291bff0fac (diff)
downloadanaconda-52af6fc3720bab4957a08d9f3f262b59138835b6.tar.gz
anaconda-52af6fc3720bab4957a08d9f3f262b59138835b6.tar.xz
anaconda-52af6fc3720bab4957a08d9f3f262b59138835b6.zip
Fix traceback (#211830)
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iutil.py b/iutil.py
index 41518744a..60e265a6a 100644
--- a/iutil.py
+++ b/iutil.py
@@ -76,9 +76,9 @@ def execWithCapture(command, argv, stdin = 0, stderr = 2, root='/'):
def execConsole():
if rhpl.getArch() == "s390":
- iutil.execWithRedirect("/bin/sh", [])
+ execWithRedirect("/bin/sh", [])
else:
- iutil.execWithRedirect("/bin/sh", [], stdout="/dev/console", stderr="/dev/console")
+ execWithRedirect("/bin/sh", [], stdout="/dev/console", stderr="/dev/console")
# return size of directory (and subdirs) in kilobytes
def getDirSize(dir):