diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-12 18:15:20 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-12 18:15:20 +0000 |
commit | 3ced20c04db38a7d97b97d213f307d64a0d81477 (patch) | |
tree | 33db50394aace98f1328805ce965c7878440818c /comps.py | |
parent | 3c6dff2d99fb96548f8b00b510e00948d4e9bc4a (diff) | |
download | anaconda-3ced20c04db38a7d97b97d213f307d64a0d81477.tar.gz anaconda-3ced20c04db38a7d97b97d213f307d64a0d81477.tar.xz anaconda-3ced20c04db38a7d97b97d213f307d64a0d81477.zip |
added lilo, 'everything' comp (generated), s/Ok/OK
Diffstat (limited to 'comps.py')
-rw-r--r-- | comps.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -147,6 +147,12 @@ class ComponentSet: comp.addInclude(self.compsDict[l]) else: comp.addPackage(packages[l]) + + everything = Component("Everything", 0, 0) + for package in packages.keys (): + everything.addPackage (packages[package]) + self.comps.append (everything) + def __repr__(self): s = "" |