summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-17 23:48:31 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 14:07:29 -0500
commitff60efad5c439e68c093037ae75619f876255ffe (patch)
tree47be692a557d97858404f698b6f8af9e1f0ad024 /backend.py
parent7b2652c066dd27662c131a2c8abf466700024f26 (diff)
downloadanaconda-ff60efad5c439e68c093037ae75619f876255ffe.tar.gz
anaconda-ff60efad5c439e68c093037ae75619f876255ffe.tar.xz
anaconda-ff60efad5c439e68c093037ae75619f876255ffe.zip
Move instClass to be an attribute on Anaconda.
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend.py b/backend.py
index 0342c6aa0..139fecaa0 100644
--- a/backend.py
+++ b/backend.py
@@ -306,9 +306,9 @@ def doBasePackageSelect(anaconda):
anaconda.backend.resetPackageSelections()
if anaconda.ksdata:
kickstart.selectPackages(anaconda)
- elif anaconda.id.displayMode != 't':
- anaconda.id.instClass.setPackageSelection(anaconda)
- anaconda.id.instClass.setGroupSelection(anaconda)
+ elif anaconda.displayMode != 't':
+ anaconda.instClass.setPackageSelection(anaconda)
+ anaconda.instClass.setGroupSelection(anaconda)
def writeConfiguration(anaconda):
log.info("Writing main configuration")