summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2006-02-08 18:33:25 +0000
committerPaul Nasrat <pnasrat@redhat.com>2006-02-08 18:33:25 +0000
commit5e8936a7f9cbe271202e7c43c9f7dab707531b24 (patch)
tree9c9dea84e66256630bcf80b1073e875178d53822
parente913e9e880e39596d5617aa7c17340e33613605f (diff)
downloadanaconda-5e8936a7f9cbe271202e7c43c9f7dab707531b24.tar.gz
anaconda-5e8936a7f9cbe271202e7c43c9f7dab707531b24.tar.xz
anaconda-5e8936a7f9cbe271202e7c43c9f7dab707531b24.zip
oops, not that
-rw-r--r--yuminstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yuminstall.py b/yuminstall.py
index fe8d8e388..f05c088be 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -257,7 +257,7 @@ class YumSorter(yum.YumBase):
best = None
(r, f, v) = req
- satisfiers = {}
+ satisfiers = []
for po in self.whatProvides(r, f, v):
# if we already have something installed which does the provide
# then that's obviously the one we want to use. this takes
@@ -384,7 +384,7 @@ class AnacondaYum(YumSorter):
def log(self, value, msg):
if value >= 2:
- log.debug(msg)
+ pass
elif value == 1:
log.info(msg)
else: