summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--yuminstall.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d5345836b..a44089735 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-23 Chris Lumens <clumens@redhat.com>
+
+ * yuminstall.py (YumBackend.doPostSelection): Don't traceback when
+ offering the choice to retry on a failed mirror (#349371).
+
2007-10-22 Jeremy Katz <katzj@redhat.com>
* anaconda.spec: Bump version.
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")]