summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/backend.py b/backend.py
index 6bd5593bf..06db80510 100644
--- a/backend.py
+++ b/backend.py
@@ -157,7 +157,7 @@ class AnacondaBackend:
pass
# write out the %packages section of anaconda-ks.cfg
- def writePackagesKS(self, f):
+ def writePackagesKS(self, f, anaconda):
log.warning("writePackagesKS not implemented for backend!")
pass
@@ -206,6 +206,5 @@ def doBasePackageSelect(anaconda):
def writeConfiguration(anaconda):
log.info("Writing main configuration")
if not flags.test:
- anaconda.id.write(anaconda)
+ anaconda.id.write()
anaconda.backend.writeConfiguration()
-