diff options
author | Chris Lumens <clumens@redhat.com> | 2009-12-21 10:20:47 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2010-02-04 14:07:30 -0500 |
commit | e146251c0bd1b9325401eb15b9b157d886a8ff4a (patch) | |
tree | 1618955f52d7fe3c2183022129d7b7587f9d591f /backend.py | |
parent | 479defc726e4c1ae665258e7fc80e4ff159698ee (diff) | |
download | anaconda-e146251c0bd1b9325401eb15b9b157d886a8ff4a.tar.gz anaconda-e146251c0bd1b9325401eb15b9b157d886a8ff4a.tar.xz anaconda-e146251c0bd1b9325401eb15b9b157d886a8ff4a.zip |
Move the writeKS and write methods from InstallData to Anaconda.
For now they're just placeholders, but it gives me a place to add method
calls as each objects is removed from instdata.
Diffstat (limited to 'backend.py')
-rw-r--r-- | backend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend.py b/backend.py index 6303bda95..268225f96 100644 --- a/backend.py +++ b/backend.py @@ -310,5 +310,5 @@ def doBasePackageSelect(anaconda): def writeConfiguration(anaconda): log.info("Writing main configuration") - anaconda.id.write() + anaconda.write() anaconda.backend.writeConfiguration() |