summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-02-11 15:45:29 +0000
committerJeremy Katz <katzj@redhat.com>2003-02-11 15:45:29 +0000
commitbf5b282d4c1fb46016c7b0c4837caa3fe8840d98 (patch)
tree765e7d37bec8608ef031c9ea54c63f8a150f46e3
parente3b2ee73ee79767de6e59e287ebae30b837bad51 (diff)
downloadanaconda-bf5b282d4c1fb46016c7b0c4837caa3fe8840d98.tar.gz
anaconda-bf5b282d4c1fb46016c7b0c4837caa3fe8840d98.tar.xz
anaconda-bf5b282d4c1fb46016c7b0c4837caa3fe8840d98.zip
soften message for non-existent packages
-rw-r--r--comps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/comps.py b/comps.py
index cc04265cf..d5273a32a 100644
--- a/comps.py
+++ b/comps.py
@@ -430,7 +430,7 @@ class Component:
pkg = pkg.name
# make sure the package is in the package list
if not self.set.compsxml.packages.has_key(pkg):
- log("Component %s needs package %s which doesn't exist"
+ log("Component %s contains non-existent package %s (this is probably not a problem)"
%(self.name, pkg))
continue
deps = self.set.compsxml.packages[pkg].dependencies