21020: Remove configuration path from Python READMEs
[arvados.git] / services / fuse / arvados_fuse / command.py
index f52121d862b60ed1e16ba94dc594a5f1a32feffc..dbd0dd0b5a6da01ccde02d4aed284d26119563e0 100644 (file)
@@ -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),