summaryrefslogtreecommitdiffstats
path: root/upgrade.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 /upgrade.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 'upgrade.py')
-rw-r--r--upgrade.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py
index 86e0be140..738aec0a5 100644
--- a/upgrade.py
+++ b/upgrade.py
@@ -30,6 +30,7 @@ from constants import *
from installmethod import FileCopyException
from product import productName
+import rhpl
from rhpl.translate import _
import logging
@@ -39,7 +40,7 @@ log = logging.getLogger("anaconda")
# (name, ) to erase all matches
upgrade_remove_blacklist = [("system-config-mouse",), ("dev",)]
-if iutil.getArch() == "x86_64":
+if rhpl.getArch() == "x86_64":
upgrade_remove_blacklist.extend( [("perl","i386"), ("e2fsprogs", "i386")] )
def findRootParts(intf, id, dispatch, dir, chroot):