rename fuse2 -> hlfuse

fuse2 was a bit misleading. it meant "our 2nd fuse implementation",
but could be misunderstood to refer to fuse v2.

hlfuse.py now means highlevel fuse, as opposed to the lowlevel fuse in fuse.py.
This commit is contained in:
Thomas Waldmann 2025-12-06 01:44:58 +01:00
parent 2e567d9785
commit cc18e3f171
No known key found for this signature in database
GPG key ID: 243ACFA951F78E01
3 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ class MountMixIn:
if has_mfusepy:
# Use mfusepy implementation
from ..fuse2 import borgfs
from ..hlfuse import borgfs
operations = borgfs(manifest, args, repository)
logger.info("Mounting filesystem")

View file

@ -34,7 +34,7 @@ for FUSE_IMPL in BORG_FUSE_IMPL.split(","):
break
elif FUSE_IMPL == "mfusepy":
try:
from .fuse2 import mfuse # noqa
from .hlfuse import mfuse # noqa
except ImportError:
pass
else: