summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-03-24 21:01:36 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-03-24 21:01:36 +0000
commit752f4a828a20c5bee9c77b21ac334796d8ec1d5b (patch)
tree8d776d3fb983ed80bf2630e2f5b3c02e06832e7b /exception.py
parenta08b8d82c731893a3c0010fec81324526cfaf8ad (diff)
downloadanaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.tar.gz
anaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.tar.xz
anaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.zip
Get ready for a surprise...
not really. It's just iutil.getArch() -> rhpl.getArch() updates.
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/exception.py b/exception.py
index 7ccdc8f52..b45928e10 100644
--- a/exception.py
+++ b/exception.py
@@ -23,6 +23,7 @@ import iutil
import types
import rpm
import bdb
+import rhpl
from string import joinfields
from cPickle import Pickler
from rhpl.translate import _
@@ -282,7 +283,7 @@ def copyExceptionToFloppy (intf, dispatch):
os.close(fd)
- if iutil.getArch() != "ia64":
+ if rhpl.getArch() != "ia64":
args = [ 'mkdosfs', '/tmp/floppy' ]
cmd = "/usr/sbin/mkdosfs"