diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-08-23 21:39:53 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-08-23 21:39:53 +0000 |
commit | 9ebc0c7dcd6946e0d9ad109bc93ae23f19e3bfd8 (patch) | |
tree | 25ad0c916fec07ad05d94d7fac28022bc60fb88c /packages.py | |
parent | f8181784991070fc992bbf7f477ea109d240444a (diff) | |
download | anaconda-9ebc0c7dcd6946e0d9ad109bc93ae23f19e3bfd8.tar.gz anaconda-9ebc0c7dcd6946e0d9ad109bc93ae23f19e3bfd8.tar.xz anaconda-9ebc0c7dcd6946e0d9ad109bc93ae23f19e3bfd8.zip |
kill debug spew
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/packages.py b/packages.py index 47b9a5d66..ff50fab68 100644 --- a/packages.py +++ b/packages.py @@ -1172,7 +1172,6 @@ def selectLanguageSupportGroups(comps, langSupport): # add to the deps in the dependencies structure -- # this will take care of if we're ever added as a dep comps.compsxml.packages[req].dependencies.append(package) - print "adding %s as a dep of %s" %(package, comps.compsxml.packages[req].name) # also add to components as needed # if the req is PKGTYPE_MANDATORY, then just add to the # depsDict. if the req is PKGTYPE_DEFAULT, add it @@ -1181,13 +1180,9 @@ def selectLanguageSupportGroups(comps, langSupport): for comp in comps.packages[req].comps: if comp.newpkgDict.has_key(req): if comp.newpkgDict[req][0] == PKGTYPE_MANDATORY: - print "adding %s to comp %s as dep" %(pkg.name, comp.name) comp.addDependencyPackage(pkg) else: - print "adding %s to comp %s" %(pkg.name, comp.name) comp.addPackage(pkg, PKGTYPE_DEFAULT) elif comp.depsDict.has_key(req): comp.addDependencyPackage(pkg) - else: - print "unable to find how %s is in comp %s" %(pkg.name, comp.name) comps.updateSelections() |