X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7134fe6c4ae22c56b45232840918be9e05f9445a..7563e6276baade41eb3faa3ff167abab1cb0f890:/services/fuse/bin/arv-mount diff --git a/services/fuse/bin/arv-mount b/services/fuse/bin/arv-mount index 05b4c50e98..019e9644a8 100755 --- a/services/fuse/bin/arv-mount +++ b/services/fuse/bin/arv-mount @@ -1,7 +1,10 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 -import arvados_fuse +import arvados_fuse.command if __name__ == '__main__': args = arvados_fuse.command.ArgumentParser().parse_args() - arvados_fuse.command.Mount(args).Run() + arvados_fuse.command.Mount(args).run()