summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-10-23 19:56:37 +0000
committerChris Lumens <clumens@redhat.com>2007-10-23 19:56:37 +0000
commit3571de7945fa56ae04a7991047a75ccd257e71ae (patch)
tree2e681b95042fcafc07cc13b69e97d25486e765f9 /yuminstall.py
parentb11bb0bca8a58b1f056020b8a8904b31735169f8 (diff)
downloadanaconda-3571de7945fa56ae04a7991047a75ccd257e71ae.tar.gz
anaconda-3571de7945fa56ae04a7991047a75ccd257e71ae.tar.xz
anaconda-3571de7945fa56ae04a7991047a75ccd257e71ae.zip
Don't traceback when offering the choice to retry on a failed mirror (#349371).
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 7da269488..b721742d8 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -931,7 +931,7 @@ class YumBackend(AnacondaBackend):
while 1:
try:
(code, msgs) = self.ayum.buildTransaction()
- except yum.Errors.NoMoreMirrorsRepoError:
+ except yum.Errors.NoMoreMirrorsRepoError, e:
buttons = [_("Re_boot"), _("_Retry")]
except RepoError, e:
buttons = [_("Re_boot")]