summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-05 19:34:28 +0000
committerMatt Wilson <msw@redhat.com>2000-02-05 19:34:28 +0000
commit374eac63333c3c4698d7bec94eea7cb95e42ac48 (patch)
treeaa1ef9a716aaa318928ed29f2d7d3d49646dfcbc /iw
parentde229354c5fdb24662935493a013728e06ee891b (diff)
downloadanaconda-374eac63333c3c4698d7bec94eea7cb95e42ac48.tar.gz
anaconda-374eac63333c3c4698d7bec94eea7cb95e42ac48.tar.xz
anaconda-374eac63333c3c4698d7bec94eea7cb95e42ac48.zip
new variables
Diffstat (limited to 'iw')
-rw-r--r--iw/silo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/silo.py b/iw/silo.py
index e99c589cc..e14b475a3 100644
--- a/iw/silo.py
+++ b/iw/silo.py
@@ -164,9 +164,9 @@ class SiloWindow (InstallWindow):
self.radioBox.attach(label, 0, 2, 1, 2)
self.mbr = GtkRadioButton(None,
- ("/dev/%s %s" % (boothd, _("Master Boot Record (MBR)"))))
+ ("/dev/%s %s" % (self.mbrpart, _("Master Boot Record (MBR)"))))
part = GtkRadioButton(self.mbr,
- ("/dev/%s %s" % (bootpart,
+ ("/dev/%s %s" % (self.bootpart,
_("First sector of boot partition"))))
self.radioBox.attach(self.mbr, 1, 2, 2, 3)
self.radioBox.attach(part, 1, 2, 3, 4)