X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/060d38d627bd1e51dd2b3c6e7de9af6aa7d7b6f3..7f0f12c40238f3eb12a51877a755cf22357e0767:/services/fuse/tests/prof.py diff --git a/services/fuse/tests/prof.py b/services/fuse/tests/prof.py index 021839c5b4..5bdb1b2e7b 100644 --- a/services/fuse/tests/prof.py +++ b/services/fuse/tests/prof.py @@ -17,5 +17,5 @@ class CountTime(object): sec = (time.time() - self.start) th = "" if self.size: - th = "throughput %s/sec" % (self.size / sec) - print "%s time %s micoseconds %s" % (self.tag, sec*1000000, th) + th = "throughput %s/sec" % (self.size // sec) + print("%s time %s micoseconds %s" % (self.tag, sec*1000000, th))