summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-06-08 15:54:02 +0000
committerChris Lumens <clumens@redhat.com>2006-06-08 15:54:02 +0000
commit2c38fba02997d5df1d1a144674a2f37e79cd9fd3 (patch)
tree9194e0ec7e1e0f3cb9a82b26dc508f36b75f13dd /yuminstall.py
parentd041798af26ed7a1acdfe0d08e44b12f3c076e2e (diff)
downloadanaconda-2c38fba02997d5df1d1a144674a2f37e79cd9fd3.tar.gz
anaconda-2c38fba02997d5df1d1a144674a2f37e79cd9fd3.tar.xz
anaconda-2c38fba02997d5df1d1a144674a2f37e79cd9fd3.zip
No point in a progress bar that never updates.
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/yuminstall.py b/yuminstall.py
index 922ab908b..2c230e124 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -1072,11 +1072,11 @@ class YumBackend(AnacondaBackend):
return
if anaconda.id.getUpgrade():
- w = anaconda.intf.progressWindow(_("Post Upgrade"),
- _("Performing post upgrade configuration..."), 6)
+ w = anaconda.intf.waitWindow(_("Post Upgrade"),
+ _("Performing post upgrade configuration..."))
else:
- w = anaconda.intf.progressWindow(_("Post Install"),
- _("Performing post install configuration..."), 6)
+ w = anaconda.intf.waitWindow(_("Post Install"),
+ _("Performing post install configuration..."))
anaconda.id.network.write(anaconda.rootPath)
self.copyExtraModules(anaconda)