diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-05-27 20:46:42 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-05-27 20:46:42 +0000 |
commit | 83530d4d70b155f3a600e1cb3b2af07386f7d2fc (patch) | |
tree | 4c15c795d620fd11f8546c1ff7e4ccf7c74f9d8a /iw | |
parent | 70f084de20daeced8eccdc8da41c040d0db58620 (diff) | |
download | anaconda-83530d4d70b155f3a600e1cb3b2af07386f7d2fc.tar.gz anaconda-83530d4d70b155f3a600e1cb3b2af07386f7d2fc.tar.xz anaconda-83530d4d70b155f3a600e1cb3b2af07386f7d2fc.zip |
don't go mucking in internals, use the function
Diffstat (limited to 'iw')
-rw-r--r-- | iw/partition_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index 64492d3df..6f8cbe332 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -1169,7 +1169,7 @@ class PartitionWindow(InstallWindow): def makeLvmCB(self, widget): if (not fileSystemTypeGet('physical volume (LVM)').isSupported() or - lvm.lvmDevicePresent == 0): + not lvm.has_lvm()): self.intf.messageWindow(_("Not supported"), _("LVM is NOT supported on " "this platform."), type="ok", |