Merge branch '21364-load-more-button'
[arvados.git] / services / fuse / tests / prof.py
index 6742799cc18b0016187b2a38951890779211aa80..5bdb1b2e7bfa69a0a809ba145380ef3647399ec8 100644 (file)
@@ -1,4 +1,3 @@
-from __future__ import print_function
 # Copyright (C) The Arvados Authors. All rights reserved.
 #
 # SPDX-License-Identifier: AGPL-3.0
@@ -18,5 +17,5 @@ class CountTime(object):
         sec = (time.time() - self.start)
         th = ""
         if self.size:
-            th = "throughput %s/sec" % (self.size / sec)
+            th = "throughput %s/sec" % (self.size // sec)
         print("%s time %s micoseconds %s" % (self.tag, sec*1000000, th))