diff options
author | Chris Lumens <clumens@redhat.com> | 2006-05-04 19:58:53 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-05-04 19:58:53 +0000 |
commit | 9e1a444c46abcfc29c2e44ffd102fcc1eda6289e (patch) | |
tree | fc10e993fe6c8292fbd0cb57fb6ad4135b0a8fad /iw/osbootwidget.py | |
parent | 2d90bc12dcc682a7f0ff68e599cbb81a34a0b4a3 (diff) | |
download | anaconda-9e1a444c46abcfc29c2e44ffd102fcc1eda6289e.tar.gz anaconda-9e1a444c46abcfc29c2e44ffd102fcc1eda6289e.tar.xz anaconda-9e1a444c46abcfc29c2e44ffd102fcc1eda6289e.zip |
Make all UI steps use anaconda class. Add system-config-keyboard shim.
Diffstat (limited to 'iw/osbootwidget.py')
-rw-r--r-- | iw/osbootwidget.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/iw/osbootwidget.py b/iw/osbootwidget.py index 2a0b0108d..02d33503f 100644 --- a/iw/osbootwidget.py +++ b/iw/osbootwidget.py @@ -26,12 +26,12 @@ from constants import * class OSBootWidget: """Widget to display OSes to boot and allow adding new ones.""" - def __init__(self, bl, fsset, diskset, parent, intf, blname): - self.bl = bl - self.fsset = fsset - self.diskset = diskset + def __init__(self, anaconda, parent, blname): + self.bl = anaconda.id.bootloader + self.fsset = anaconda.id.fsset + self.diskset = anaconda.id.diskset self.parent = parent - self.intf = intf + self.intf = anaconda.intf if blname is not None: self.blname = blname else: |