hgext/remotefilelog/basepack.py
changeset 40735 e0b485a76009
parent 40675 9fcf8084ada8
child 41249 c891a11ffe27
--- a/hgext/remotefilelog/basepack.py	Mon Nov 26 15:37:48 2018 +0300
+++ b/hgext/remotefilelog/basepack.py	Mon Nov 26 15:38:35 2018 +0300
@@ -45,7 +45,7 @@
 # bisect) with (8 step fanout scan + 1 step bisect)
 # 5 step bisect = log(2^16 / 8 / 255)  # fanout
 # 10 step fanout scan = 2^16 / (2^16 / 8)  # fanout space divided by entries
-SMALLFANOUTCUTOFF = 2**16 / 8
+SMALLFANOUTCUTOFF = 2**16 // 8
 
 # The amount of time to wait between checking for new packs. This prevents an
 # exception when data is moved to a new pack after the process has already