summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-08-07 13:53:54 -0400
committerChris Lumens <clumens@redhat.com>2008-08-08 13:30:56 -0400
commitc764f48db404bfba3382cac638e45f7038f9989e (patch)
tree8bdbf5b5f65edb60908b377a1f838d4bed95647d /yuminstall.py
parent0d163cc17cfd73682949336fdb1de215bcd622d6 (diff)
downloadanaconda-c764f48db404bfba3382cac638e45f7038f9989e.tar.gz
anaconda-c764f48db404bfba3382cac638e45f7038f9989e.tar.xz
anaconda-c764f48db404bfba3382cac638e45f7038f9989e.zip
The retry message can appear for things besides packages.
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py
index 2741b7cbc..27119321e 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -788,7 +788,7 @@ class AnacondaYum(YumSorter):
delay = 0.25*(2**(obj.tries-1))
if delay > 1:
- w = self.anaconda.intf.waitWindow(_("Retrying"), _("Retrying package download..."))
+ w = self.anaconda.intf.waitWindow(_("Retrying"), _("Retrying download..."))
time.sleep(delay)
w.pop()
else: