From 52af6fc3720bab4957a08d9f3f262b59138835b6 Mon Sep 17 00:00:00 2001 From: Paul Nasrat Date: Mon, 23 Oct 2006 13:46:37 +0000 Subject: Fix traceback (#211830) --- iutil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iutil.py') 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): -- cgit