summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-01-11 20:06:28 +0000
committerJeremy Katz <katzj@redhat.com>2007-01-11 20:06:28 +0000
commitaf77555ea306f40e04e309372f0ade8ab4a277a1 (patch)
tree5d6df2edb581a3b26ab0e74e26ca641fcfafac12 /yuminstall.py
parent3681b8dca9ab8c09bd64fd03eecb36c2b73d53d0 (diff)
downloadanaconda-af77555ea306f40e04e309372f0ade8ab4a277a1.tar.gz
anaconda-af77555ea306f40e04e309372f0ade8ab4a277a1.tar.xz
anaconda-af77555ea306f40e04e309372f0ade8ab4a277a1.zip
2007-01-11 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (AnacondaYum._run): Fix so that we properly show error messages
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 8873f9239..f98ab4114 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -617,7 +617,7 @@ class AnacondaYum(YumSorter):
rpm.RPMPROB_BADOS: _('package for incorrect os'),
}
uniqueProbs = {}
- for (descr, (type, mount, need)) in probs:
+ for (descr, (type, mount, need)) in probs.value: # FIXME: probs.value???
log.error("%s: %s" %(probTypes[type], descr))
if not uniqueProbs.has_key(type) and probTypes.has_key(type):
uniqueProbs[type] = probTypes[type]