diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-16 20:03:58 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-16 20:03:58 +0000 |
commit | 957686d3b9711e817636a37947d5043c3109a2f8 (patch) | |
tree | b88cce68c4d00b635d22802aa9f3b81974c8808e /iw | |
parent | f80c6019c39e6b44e27f4164558c053dc62a7c65 (diff) | |
download | anaconda-957686d3b9711e817636a37947d5043c3109a2f8.tar.gz anaconda-957686d3b9711e817636a37947d5043c3109a2f8.tar.xz anaconda-957686d3b9711e817636a37947d5043c3109a2f8.zip |
this shouldn't happen anymore, but I'd rather not crash
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 5829addc7..0103c6e76 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -291,7 +291,7 @@ def createMountPointCombo(request): mountpoint = request.mountpoint - if request.fstype.isMountable(): + if request.fstype and request.fstype.isMountable(): mountCombo.set_sensitive(1) if mountpoint: mountCombo.entry.set_text(mountpoint) |