##// END OF EJS Templates
py3: make sure we are doing integer division by using '//'...
Pulkit Goyal -
r36324:3496bffe default
parent child Browse files
Show More
@@ -1335,7 +1335,7 b' class curseschunkselector(object):'
1335 # temporarily disable printing to windows by printstring
1335 # temporarily disable printing to windows by printstring
1336 patchdisplaystring = self.printitem(item, ignorefolding,
1336 patchdisplaystring = self.printitem(item, ignorefolding,
1337 recursechildren, towin=False)
1337 recursechildren, towin=False)
1338 numlines = len(patchdisplaystring) / self.xscreensize
1338 numlines = len(patchdisplaystring) // self.xscreensize
1339 return numlines
1339 return numlines
1340
1340
1341 def sigwinchhandler(self, n, frame):
1341 def sigwinchhandler(self, n, frame):
General Comments 0
You need to be logged in to leave comments. Login now