X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/404f868129e22cd627d350d61f74806f5b31a8ad..3f647b8feb9868d74e2b480f355898305884596a:/services/fuse/arvados_fuse/command.py diff --git a/services/fuse/arvados_fuse/command.py b/services/fuse/arvados_fuse/command.py index f52121d862..dbd0dd0b5a 100644 --- a/services/fuse/arvados_fuse/command.py +++ b/services/fuse/arvados_fuse/command.py @@ -2,9 +2,6 @@ # # SPDX-License-Identifier: AGPL-3.0 -from future.utils import native_str -from builtins import range -from builtins import object import argparse import arvados import daemon @@ -308,7 +305,7 @@ After this time, the mount will be forcefully unmounted. cache.add_argument( '--disk-cache-dir', metavar="DIRECTORY", - help="Filesystem cache location (default `~/.cache/arvados/keep`)", + help="Set custom filesystem cache location", ) cache.add_argument( '--directory-cache', @@ -410,7 +407,7 @@ class Mount(object): if self.args.replace: unmount(path=self.args.mountpoint, timeout=self.args.unmount_timeout) - llfuse.init(self.operations, native_str(self.args.mountpoint), self._fuse_options()) + llfuse.init(self.operations, str(self.args.mountpoint), self._fuse_options()) if self.daemon: daemon.DaemonContext( working_directory=os.path.dirname(self.args.mountpoint),