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 <david.rheinsberg@gmail.com>
This commit is contained in:
David Rheinsberg 2022-07-22 10:37:14 +02:00 committed by Christian Kellner
parent 2544486332
commit d77e87f3c1

View file

@ -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()