summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2010-10-28 14:03:51 -0400
committerChris Lumens <clumens@redhat.com>2010-10-28 14:03:51 -0400
commit6d098df918514a67133d1b458adcbe9a59aa0608 (patch)
treee5d75a0dbfb52d62d46aeb0c16bb829378191af2
parentc7635f0a99d15e08c383a1f302ca227a4b218ed8 (diff)
downloadanaconda-6d098df918514a67133d1b458adcbe9a59aa0608.tar.gz
anaconda-6d098df918514a67133d1b458adcbe9a59aa0608.tar.xz
anaconda-6d098df918514a67133d1b458adcbe9a59aa0608.zip
Errors downloading .treeinfo files should not be logged as errors.
At least in Fedora, there won't be a .treeinfo file at the mirror manager URL. So when we attempt to fetch the addon list, it'll look like there is a real problem when it's an expected situation. Log appropriately.
-rw-r--r--pyanaconda/yuminstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/yuminstall.py b/pyanaconda/yuminstall.py
index 54afb10b1..4ceafccc2 100644
--- a/pyanaconda/yuminstall.py
+++ b/pyanaconda/yuminstall.py
@@ -729,7 +729,7 @@ class AnacondaYum(YumSorter):
copy_local=1, proxies=proxies)
return "/tmp/.treeinfo"
except Exception as e:
- log.error("Error downloading %s/.treeinfo: %s" % (baseurl, e))
+ log.info("Error downloading %s/.treeinfo: %s" % (baseurl, e))
return None
def _getReleasever(self):