update listctrl

change xrange to range
This commit is contained in:
swprojects
2016-07-09 21:13:41 +01:00
parent 10808493ab
commit e592026a34

View File

@@ -849,7 +849,7 @@ class ListRowHighlighter:
color = self._color
local_defaultb = self._defaultb
local_mode = self._mode
for row in xrange(self.GetItemCount()):
for row in range(self.GetItemCount()):
if local_mode & HIGHLIGHT_EVEN:
dohlight = not row % 2
else: