From ff60efad5c439e68c093037ae75619f876255ffe Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Thu, 17 Dec 2009 23:48:31 -0500 Subject: Move instClass to be an attribute on Anaconda. --- kickstart.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'kickstart.py') diff --git a/kickstart.py b/kickstart.py index f806bd05a..f16773e1c 100644 --- a/kickstart.py +++ b/kickstart.py @@ -187,7 +187,7 @@ class AutoPart(commands.autopart.F12_AutoPart): def execute(self, anaconda): # sets up default autopartitioning. use clearpart separately # if you want it - anaconda.id.instClass.setDefaultPartitioning(anaconda.id.storage, anaconda.platform) + anaconda.instClass.setDefaultPartitioning(anaconda.id.storage, anaconda.platform) anaconda.id.storage.doAutoPart = True if self.encrypted: @@ -1283,7 +1283,7 @@ def selectPackages(anaconda): # selections. This can also be explicitly specified with %packages # --default. Otherwise, select whatever was given (even if it's nothing). if not ksdata.packages.seen or ksdata.packages.default: - anaconda.id.instClass.setGroupSelection(anaconda) + anaconda.instClass.setGroupSelection(anaconda) return for pkg in ksdata.packages.packageList: @@ -1372,7 +1372,7 @@ def setSteps(anaconda): dispatch.skipStep("betanag") dispatch.skipStep("installtype") else: - anaconda.id.instClass.setSteps(anaconda) + anaconda.instClass.setSteps(anaconda) dispatch.skipStep("findrootparts") if interactive or flags.autostep: -- cgit