--- a/hgext/remotefilelog/datapack.py Sun May 29 12:38:54 2022 +0200
+++ b/hgext/remotefilelog/datapack.py Sun May 29 15:17:27 2022 +0200
@@ -7,7 +7,6 @@
)
from mercurial.i18n import _
from mercurial import (
- pycompat,
util,
)
from . import (
@@ -232,7 +231,7 @@
# Scan forward to find the first non-same entry, which is the upper
# bound.
- for i in pycompat.xrange(fanoutkey + 1, params.fanoutcount):
+ for i in range(fanoutkey + 1, params.fanoutcount):
end = fanout[i] + params.indexstart
if end != start:
break