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.
@@ -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")
@@ -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: