diff options
author | Mike Fulbright <msf@redhat.com> | 2001-07-31 18:01:19 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-07-31 18:01:19 +0000 |
commit | 3206b6227d64ad94d2c2c33c7556cfe936ebd72a (patch) | |
tree | 1960d485211159ee2cd037d33a0359f5c769f767 /iw | |
parent | 515ed3eca51cfd45c538a0044b1eb71b832ed842 (diff) | |
download | anaconda-3206b6227d64ad94d2c2c33c7556cfe936ebd72a.tar.gz anaconda-3206b6227d64ad94d2c2c33c7556cfe936ebd72a.tar.xz anaconda-3206b6227d64ad94d2c2c33c7556cfe936ebd72a.zip |
handle another case for foreign fs types
Diffstat (limited to 'iw')
-rw-r--r-- | iw/partition_gui.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index fc85801dd..d83b7e2e7 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -629,6 +629,8 @@ class PartitionWindow(InstallWindow): elif part.fs_type: if request and request.fstype != None: ptype = request.fstype.getName() + if ptype == "foreign": + ptype = map_foreign_to_fsname(part.native_type) else: ptype = part.fs_type.name if request.format: |