summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-11-19 15:07:37 -0500
committerChris Lumens <clumens@redhat.com>2007-11-19 15:07:37 -0500
commitf4ee35a95372d658b0a872cb6bfcfcb4b5f0e0e2 (patch)
treebe99fc01b6de3e96005d7415dc412afd82d78f7a /yuminstall.py
parent4902731000bebfdadeb5ef0bb5a869f92ec4554a (diff)
downloadanaconda-f4ee35a95372d658b0a872cb6bfcfcb4b5f0e0e2.tar.gz
anaconda-f4ee35a95372d658b0a872cb6bfcfcb4b5f0e0e2.tar.xz
anaconda-f4ee35a95372d658b0a872cb6bfcfcb4b5f0e0e2.zip
Clarify error message a bit (#376651).
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 978e171c5..e48c31208 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -404,10 +404,10 @@ class AnacondaYum(YumSorter):
# Whenever we have run out of mirrors the grabber's get/open/retrieve
# method will raise a URLGrabError exception with errno 256.
grab = self.repos.getRepo(kwargs["repo"]).grab
- log.warning("Failed to get %s from mirror %d/%d" % (obj.url,
- grab._next + 1,
- len(grab.mirrors)))
-
+ log.warning("Failed to get %s from mirror %d/%d, "
+ "or downloaded file is corrupt" % (obj.url, grab._next + 1,
+ len(grab.mirrors)))
+
if self.method.currentMedia:
if kwargs.get("tsInfo") and kwargs["tsInfo"].curmedia > 0:
self.prevmedia = kwargs["tsInfo"].curmedia