summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-08-23 21:47:18 +0000
committerJeremy Katz <katzj@redhat.com>2004-08-23 21:47:18 +0000
commit1e785bd9bacdc21846283e043945088f12b7ae41 (patch)
tree68680574c8b3bb2a9c9672cdae25df5644b8bb15 /iw
parent63dfccd937a0a290c13a837bd34f34773fd142d0 (diff)
downloadanaconda-1e785bd9bacdc21846283e043945088f12b7ae41.tar.gz
anaconda-1e785bd9bacdc21846283e043945088f12b7ae41.tar.xz
anaconda-1e785bd9bacdc21846283e043945088f12b7ae41.zip
fix some more combo changes that I didn't catch (#130722)
Diffstat (limited to 'iw')
-rw-r--r--iw/lvm_dialog_gui.py4
-rw-r--r--iw/raid_dialog_gui.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/iw/lvm_dialog_gui.py b/iw/lvm_dialog_gui.py
index 8dd94b94a..7036e1b7a 100644
--- a/iw/lvm_dialog_gui.py
+++ b/iw/lvm_dialog_gui.py
@@ -462,7 +462,7 @@ class VolumeGroupEditor:
if formatrb:
format = formatrb.get_active()
if format:
- fsystem = self.fsoptionsDict["fstypeCombo"].get_active().get_data("type")
+ fsystem = self.fsoptionsDict["fstypeCombo"].get_active_value()
else:
format = 0
@@ -474,7 +474,7 @@ class VolumeGroupEditor:
if migraterb:
migrate = migraterb.get_active()
if migrate:
- fsystem = self.fsoptionsDict["migfstypeCombo"].get_active().get_data("type")
+ fsystem = self.fsoptionsDict["migfstypeCombo"].get_active_value()
else:
migrate = 0
diff --git a/iw/raid_dialog_gui.py b/iw/raid_dialog_gui.py
index 03d16ff31..b5460deaa 100644
--- a/iw/raid_dialog_gui.py
+++ b/iw/raid_dialog_gui.py
@@ -178,7 +178,7 @@ class RaidEditor:
if formatrb:
request.format = formatrb.get_active()
if request.format:
- request.fstype = self.fsoptionsDict["fstypeCombo"].get_active().get_data("type")
+ request.fstype = self.fsoptionsDict["fstypeCombo"].get_active_value()
else:
request.format = 0
@@ -190,7 +190,7 @@ class RaidEditor:
if migraterb:
request.migrate = migraterb.get_active()
if request.migrate:
- request.fstype =self.fsoptionsDict["migfstypeCombo"].get_active().get_data("type")
+ request.fstype =self.fsoptionsDict["migfstypeCombo"].get_active_value()
else:
request.migrate = 0