summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yuminstall.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py
index 19f31be4c..89f36686e 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -694,7 +694,10 @@ class AnacondaYum(YumSorter):
self.currentMedia = None
def urlgrabberFailureCB (self, obj, *args, **kwargs):
- log.warning("Try %s/%s for %s failed" % (obj.tries, obj.retry, obj.url))
+ if hasattr(obj, "exception"):
+ log.warning("Try %s/%s for %s failed: %s" % (obj.tries, obj.retry, obj.url, obj.exception))
+ else:
+ log.warning("Try %s/%s for %s failed" % (obj.tries, obj.retry, obj.url))
if obj.tries == obj.retry:
return