diff options
author | Chris Lumens <clumens@redhat.com> | 2009-12-02 15:41:55 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-12-03 13:14:43 -0500 |
commit | f11637c8d8ec9370a14284966be2f97de385b466 (patch) | |
tree | 10ba1bb25bc2230c78f62f100947f13bde45cfe3 /backend.py | |
parent | 9581135046aa223a9374b3d0fd19eba3d46051b3 (diff) | |
download | anaconda-f11637c8d8ec9370a14284966be2f97de385b466.tar.gz anaconda-f11637c8d8ec9370a14284966be2f97de385b466.tar.xz anaconda-f11637c8d8ec9370a14284966be2f97de385b466.zip |
Remove test mode.
This is yet another way of running anaconda that gets extremely limited use,
no testing, and no consideration during development to making sure it still
works. Again, we need to stop pretending and get rid of modes that we don't
support.
Diffstat (limited to 'backend.py')
-rw-r--r-- | backend.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/backend.py b/backend.py index fcd357144..08e3ce7b3 100644 --- a/backend.py +++ b/backend.py @@ -301,6 +301,5 @@ def doBasePackageSelect(anaconda): def writeConfiguration(anaconda): log.info("Writing main configuration") - if not flags.test: - anaconda.id.write() - anaconda.backend.writeConfiguration() + anaconda.id.write() + anaconda.backend.writeConfiguration() |