X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/77d9c05d89dabc9e9e9a15f46cd12c8ad61ed64e..163a40366283e336d8c8ea3fb9c0bd7322904865:/sdk/python/arvados/commands/ls.py diff --git a/sdk/python/arvados/commands/ls.py b/sdk/python/arvados/commands/ls.py old mode 100755 new mode 100644 index c6ca0855f7..86e728ed49 --- a/sdk/python/arvados/commands/ls.py +++ b/sdk/python/arvados/commands/ls.py @@ -1,6 +1,9 @@ -#!/usr/bin/env python +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 from __future__ import print_function +from __future__ import division import argparse import collections @@ -31,7 +34,7 @@ def parse_args(args): return parser.parse_args(args) def size_formatter(coll_file): - return "{:>10}".format((coll_file.size + 1023) / 1024) + return "{:>10}".format((coll_file.size + 1023) // 1024) def name_formatter(coll_file): return "{}/{}".format(coll_file.stream_name, coll_file.name)