mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 01:41:57 -04:00
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:
parent
2e567d9785
commit
cc18e3f171
3 changed files with 2 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue