diff options
Diffstat (limited to 'src/live')
-rw-r--r-- | src/live/ogOperations.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index 853d661..d9c3740 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -78,6 +78,9 @@ class OgLiveOperations: part_setup['code'] = hex(code)[2:] part_setup['size'] = str(int(size) // 1024) + if (part_setup['filesystem'] == 'VFAT'): + part_setup['filesystem'] = 'FAT32' + def _refresh_part_setup_cache(self, cxt, pa, part_setup, cache): padev = cxt.partition_to_string(pa, fdisk.FDISK_FIELD_DEVICE) if padev == cache: |