##// END OF EJS Templates
py3: use integer division in curseschunkselector.printstring()...
Denis Laxalde -
r43429:b0238700 default
parent child Browse files
Show More
@@ -1156,7 +1156,7 b' class curseschunkselector(object):'
1156
1156
1157 # is reset to 0 at the beginning of printitem()
1157 # is reset to 0 at the beginning of printitem()
1158
1158
1159 linesprinted = (xstart + len(t)) / self.xscreensize
1159 linesprinted = (xstart + len(t)) // self.xscreensize
1160 self.linesprintedtopadsofar += linesprinted
1160 self.linesprintedtopadsofar += linesprinted
1161 return t
1161 return t
1162
1162
General Comments 0
You need to be logged in to leave comments. Login now