summaryrefslogtreecommitdiffstats
path: root/livecd.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-18 00:02:46 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 14:07:29 -0500
commit9f1ed81c9ed2e7cb40b746dfaf2bd8107e492aaa (patch)
tree3b3a7985dba4d1b4d785adff0aa3559355bc9b39 /livecd.py
parentd2fbd3be94d015fd3133d32c69137b10fd7d7e8f (diff)
downloadanaconda-9f1ed81c9ed2e7cb40b746dfaf2bd8107e492aaa.tar.gz
anaconda-9f1ed81c9ed2e7cb40b746dfaf2bd8107e492aaa.tar.xz
anaconda-9f1ed81c9ed2e7cb40b746dfaf2bd8107e492aaa.zip
Move instProgress to be an attribute on the InstallInterface.
Diffstat (limited to 'livecd.py')
-rw-r--r--livecd.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/livecd.py b/livecd.py
index 47f049c35..ca78199de 100644
--- a/livecd.py
+++ b/livecd.py
@@ -176,7 +176,7 @@ class LiveCDCopyBackend(backend.AnacondaBackend):
def doInstall(self, anaconda):
log.info("Preparing to install packages")
- progress = anaconda.id.instProgress
+ progress = anaconda.intf.instProgress
progress.set_label(_("Copying live image to hard drive."))
progress.processEvents()
@@ -221,7 +221,7 @@ class LiveCDCopyBackend(backend.AnacondaBackend):
os.close(osfd)
os.close(rootfd)
- anaconda.id.instProgress = None
+ anaconda.intf.setInstallProgressClass(None)
def _doFilesystemMangling(self, anaconda):
# FIXME: this whole method is a big fucking mess