summaryrefslogtreecommitdiffstats
path: root/upgradeclass.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 /upgradeclass.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 'upgradeclass.py')
-rw-r--r--upgradeclass.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/upgradeclass.py b/upgradeclass.py
index a443f6f24..606dbf4cd 100644
--- a/upgradeclass.py
+++ b/upgradeclass.py
@@ -14,6 +14,7 @@ from rhpl.translate import N_, _
import os
import iutil
+import rhpl
class InstallClass(BaseInstallClass):
name = N_("Upgrade Existing System")
@@ -59,11 +60,11 @@ class InstallClass(BaseInstallClass):
"complete"
)
- if iutil.getArch() != "i386" and iutil.getArch() != "x86_64":
+ if rhpl.getArch() != "i386" and rhpl.getArch() != "x86_64":
dispatch.skipStep("bootloader")
dispatch.skipStep("bootloaderadvanced")
- if iutil.getArch() != "i386" and iutil.getArch() != "x86_64":
+ if rhpl.getArch() != "i386" and rhpl.getArch() != "x86_64":
dispatch.skipStep("upgbootloader")
def setInstallData(self, id):