From d77e87f3c16287118c24ff9f0746d35f8c0fb39c Mon Sep 17 00:00:00 2001 From: David Rheinsberg Date: Fri, 22 Jul 2022 10:37:14 +0200 Subject: [PATCH] mounts/fat: Xfs -> Fat Fix the wrong symbol prefixes for the Fat-Mounter. Looks like a copy-paste from the Xfs-mounter. Signed-off-by: David Rheinsberg --- mounts/org.osbuild.fat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mounts/org.osbuild.fat b/mounts/org.osbuild.fat index 8a5cba05..4f40bf04 100755 --- a/mounts/org.osbuild.fat +++ b/mounts/org.osbuild.fat @@ -33,14 +33,14 @@ SCHEMA_2 = """ """ -class XfsMount(mounts.FileSystemMountService): +class FatMount(mounts.FileSystemMountService): def translate_options(self, _options: Dict): return ["-t", "vfat"] def main(): - service = XfsMount.from_args(sys.argv[1:]) + service = FatMount.from_args(sys.argv[1:]) service.main()