##// END OF EJS Templates
tags: use modern // operator for division...
Augie Fackler -
r44825:8ec186c1 default
parent child Browse files
Show More
@@ -721,7 +721,7 b' class hgtagsfnodescache(object):'
721 721 self._dirtyoffset = None
722 722
723 723 rawlentokeep = min(
724 wantedlen, (rawlen / _fnodesrecsize) * _fnodesrecsize
724 wantedlen, (rawlen // _fnodesrecsize) * _fnodesrecsize
725 725 )
726 726 if rawlen > rawlentokeep:
727 727 # There's no easy way to truncate array instances. This seems
General Comments 0
You need to be logged in to leave comments. Login now