From a74f99e8b5403ac138753ec24cb49f102330c290 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Sun, 21 Jul 2024 20:05:18 +0200 Subject: [PATCH] Do not set NTFS as supported This is no longer needed, NTFS is marked as supported in blivet now, see https://github.com/storaged-project/blivet/pull/1016 --- blivetgui/blivet_utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/blivetgui/blivet_utils.py b/blivetgui/blivet_utils.py index c290b3ad..4b916cf3 100644 --- a/blivetgui/blivet_utils.py +++ b/blivetgui/blivet_utils.py @@ -157,10 +157,6 @@ def __init__(self, ignored_disks=None, exclusive_disks=None, flags=None): set_logging(component="blivet") set_logging(component="program") - # allow creating of ntfs format - blivet.formats.fs.NTFS._formattable = True - blivet.formats.fs.NTFS._supported = True - # ignore zram devices blivet.udev.ignored_device_names.append(r"^zram")