summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-03-30 18:06:41 +0000
committerChris Lumens <clumens@redhat.com>2006-03-30 18:06:41 +0000
commitb12c89deed26132b45302d048c92f1a71395efc4 (patch)
treebcd02b80200e8c4abf716f2eb6d05cd0dad66ccc /isys
parente6015c01be9bc42e85545c94f757f1efe4fb6a1a (diff)
downloadanaconda-b12c89deed26132b45302d048c92f1a71395efc4.tar.gz
anaconda-b12c89deed26132b45302d048c92f1a71395efc4.tar.xz
anaconda-b12c89deed26132b45302d048c92f1a71395efc4.zip
Fix some deprecation warnings.
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index eea59db21..2499f1278 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -26,6 +26,7 @@ import kudzu
import iutil
import warnings
import resource
+import rhpl
import logging
log = logging.getLogger("anaconda")
@@ -289,7 +290,7 @@ def hardDriveDict():
# this is kind of ugly, but it's much easier to do this from python
for (dev, descr) in dict.items():
# blacklist *STMF on power5 iSeries boxes
- if iutil.getArch() == "ppc" and dev.startswith("sd"):
+ if rhpl.getArch() == "ppc" and dev.startswith("sd"):
try:
devName = "/tmp/%s" % dev
makeDevInode(dev, devName)