summaryrefslogtreecommitdiffstats
path: root/upgradeclass.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-05-04 15:27:30 +0000
committerChris Lumens <clumens@redhat.com>2006-05-04 15:27:30 +0000
commitb15bb5d63e411f94476c7f064fec70e7c4209803 (patch)
tree39e58df2a3b9fe742b1843e9830254fa4f2a57f2 /upgradeclass.py
parent4599e0880fa17eedb9f733ec3531395bb2910990 (diff)
downloadanaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.tar.gz
anaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.tar.xz
anaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.zip
Finish making non-UI steps pass around the anaconda object.
Diffstat (limited to 'upgradeclass.py')
-rw-r--r--upgradeclass.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/upgradeclass.py b/upgradeclass.py
index 606dbf4cd..c393dfdbb 100644
--- a/upgradeclass.py
+++ b/upgradeclass.py
@@ -67,9 +67,9 @@ class InstallClass(BaseInstallClass):
if rhpl.getArch() != "i386" and rhpl.getArch() != "x86_64":
dispatch.skipStep("upgbootloader")
- def setInstallData(self, id):
- BaseInstallClass.setInstallData(self, id)
- id.setUpgrade(True)
+ def setInstallData(self, anaconda):
+ BaseInstallClass.setInstallData(self, anaconda)
+ anaconda.id.setUpgrade(True)
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)